diff --git a/CHANGELOG.md b/CHANGELOG.md index 25b955ca2cb..561a721800f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +Release v1.43.26 (2022-03-25) +=== + +### Service Client Updates +* `service/batch`: Updates service documentation + * Bug Fix: Fixed a bug where shapes were marked as unboxed and were not serialized and sent over the wire, causing an API error from the service. +* `service/ec2`: Updates service API and documentation + * This is release adds support for Amazon VPC Reachability Analyzer to analyze path through a Transit Gateway. +* `service/ssm`: Updates service API and documentation + * This Patch Manager release supports creating, updating, and deleting Patch Baselines for Rocky Linux OS. + Release v1.43.25 (2022-03-24) === diff --git a/aws/version.go b/aws/version.go index 08fb6931467..3a478c08b1d 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.43.25" +const SDKVersion = "1.43.26" diff --git a/models/apis/batch/2016-08-10/docs-2.json b/models/apis/batch/2016-08-10/docs-2.json index c7df8f81b65..14417072de0 100644 --- a/models/apis/batch/2016-08-10/docs-2.json +++ b/models/apis/batch/2016-08-10/docs-2.json @@ -19,7 +19,7 @@ "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 are not 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.

", + "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 are not 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.

", @@ -472,14 +472,14 @@ "ComputeResourceUpdate$maxvCpus": "

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

With both BEST_FIT_PROGRESSIVE and SPOT_CAPACITY_OPTIMIZED allocation strategies, Batch might need to exceed maxvCpus to meet your capacity requirements. In this event, Batch never exceeds maxvCpus by more than a single instance. That is, no more than a single instance from among those specified in your compute environment.

", "ComputeResourceUpdate$desiredvCpus": "

The desired number of Amazon EC2 vCPUS in the compute environment.

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

", "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 run 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$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 that run on Fargate resources. For jobs 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 that run on Fargate resources. For jobs run on EC2 resources, it overrides the memory parameter set in the job definition, but doesn't override any memory requirement 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 that run on Fargate resources. For jobs run 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 that run on Fargate resources. For jobs 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.

", + "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 running 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 running on EC2 resources, it overrides the memory parameter set in the job definition, but doesn't override any memory requirement 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 running 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/

", + "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.

", @@ -944,7 +944,7 @@ "ContainerDetail$logStreamName": "

The name of the CloudWatch Logs log stream 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": "

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 . 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 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$image": "

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 . 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 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.

", diff --git a/models/apis/ec2/2016-11-15/api-2.json b/models/apis/ec2/2016-11-15/api-2.json index 3f80df7e7d9..066614d7a8d 100755 --- a/models/apis/ec2/2016-11-15/api-2.json +++ b/models/apis/ec2/2016-11-15/api-2.json @@ -5042,6 +5042,26 @@ "Description":{"shape":"String"} } }, + "AdditionalDetail":{ + "type":"structure", + "members":{ + "AdditionalDetailType":{ + "shape":"String", + "locationName":"additionalDetailType" + }, + "Component":{ + "shape":"AnalysisComponent", + "locationName":"component" + } + } + }, + "AdditionalDetailList":{ + "type":"list", + "member":{ + "shape":"AdditionalDetail", + "locationName":"item" + } + }, "Address":{ "type":"structure", "members":{ @@ -8200,7 +8220,7 @@ "type":"structure", "members":{ "PoolId":{ - "shape":"CoipPoolId", + "shape":"Ipv4PoolCoipId", "locationName":"poolId" }, "PoolCidrs":{ @@ -8225,7 +8245,7 @@ "CoipPoolIdSet":{ "type":"list", "member":{ - "shape":"CoipPoolId", + "shape":"Ipv4PoolCoipId", "locationName":"item" } }, @@ -18541,6 +18561,22 @@ "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" } } }, @@ -19805,7 +19841,7 @@ "type":"structure", "required":["PoolId"], "members":{ - "PoolId":{"shape":"CoipPoolId"}, + "PoolId":{"shape":"Ipv4PoolCoipId"}, "Filters":{ "shape":"FilterList", "locationName":"Filter" @@ -25029,6 +25065,7 @@ "delete-failed" ] }, + "Ipv4PoolCoipId":{"type":"string"}, "Ipv4PoolEc2Id":{"type":"string"}, "Ipv4PrefixList":{ "type":"list", @@ -29686,6 +29723,18 @@ "Vpc":{ "shape":"AnalysisComponent", "locationName":"vpc" + }, + "AdditionalDetails":{ + "shape":"AdditionalDetailList", + "locationName":"additionalDetailSet" + }, + "TransitGateway":{ + "shape":"AnalysisComponent", + "locationName":"transitGateway" + }, + "TransitGatewayRouteTableRoute":{ + "shape":"TransitGatewayRouteTableRoute", + "locationName":"transitGatewayRouteTableRoute" } } }, @@ -37608,6 +37657,39 @@ "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":[ diff --git a/models/apis/ec2/2016-11-15/docs-2.json b/models/apis/ec2/2016-11-15/docs-2.json index 974aa525ca0..15c7715cd9c 100755 --- a/models/apis/ec2/2016-11-15/docs-2.json +++ b/models/apis/ec2/2016-11-15/docs-2.json @@ -767,6 +767,18 @@ "AddPrefixListEntries$member": null } }, + "AdditionalDetail": { + "base": "

Describes an additional detail for a path analysis.

", + "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": { @@ -936,6 +948,7 @@ "AnalysisComponent": { "base": "

Describes a path component.

", "refs": { + "AdditionalDetail$Component": "

The path component.

", "AnalysisComponentList$member": null, "AnalysisLoadBalancerTarget$Instance": "

Information about the instance.

", "Explanation$Acl": "

The network ACL.

", @@ -961,12 +974,16 @@ "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$Vpc": "

The component VPC.

", + "PathComponent$TransitGateway": null } }, "AnalysisComponentList": { @@ -3181,9 +3198,6 @@ "CoipPoolId": { "base": null, "refs": { - "CoipPool$PoolId": "

The ID of the address pool.

", - "CoipPoolIdSet$member": null, - "GetCoipPoolUsageRequest$PoolId": "

The ID of the 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.

" } @@ -7947,8 +7961,8 @@ "DescribeNetworkAclsRequest$Filters": "

One or more filters.

", "DescribeNetworkInsightsAccessScopeAnalysesRequest$Filters": "

There are no supported filters.

", "DescribeNetworkInsightsAccessScopesRequest$Filters": "

There are no supported filters.

", - "DescribeNetworkInsightsAnalysesRequest$Filters": "

The filters. The following are possible values:

", - "DescribeNetworkInsightsPathsRequest$Filters": "

The filters. The following are possible values:

", + "DescribeNetworkInsightsAnalysesRequest$Filters": "

The filters. The following are the possible values:

", + "DescribeNetworkInsightsPathsRequest$Filters": "

The filters. The following are the possible values:

", "DescribeNetworkInterfacePermissionsRequest$Filters": "

One or more filters.

", "DescribeNetworkInterfacesRequest$Filters": "

One or more filters.

", "DescribePlacementGroupsRequest$Filters": "

The filters.

", @@ -10967,6 +10981,14 @@ "Ipam$State": "

The state of the IPAM.

" } }, + "Ipv4PoolCoipId": { + "base": null, + "refs": { + "CoipPool$PoolId": "

The ID of the address pool.

", + "CoipPoolIdSet$member": null, + "GetCoipPoolUsageRequest$PoolId": "

The ID of the address pool.

" + } + }, "Ipv4PoolEc2Id": { "base": null, "refs": { @@ -16258,6 +16280,7 @@ "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.

", + "AdditionalDetail$AdditionalDetailType": "

The information type.

", "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 for use with EC2-VPC.

", @@ -16306,11 +16329,11 @@ "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 possible values:

", + "AnalysisRouteTableRoute$Origin": "

Describes how the route was created. The following are the possible values:

", "AnalysisRouteTableRoute$TransitGatewayId": "

The ID of a transit gateway.

", "AnalysisRouteTableRoute$VpcPeeringConnectionId": "

The ID of a VPC peering connection.

", "AnalysisSecurityGroupRule$Cidr": "

The IPv4 address range, in CIDR notation.

", - "AnalysisSecurityGroupRule$Direction": "

The direction. The following are possible values:

", + "AnalysisSecurityGroupRule$Direction": "

The direction. The following are the possible values:

", "AnalysisSecurityGroupRule$SecurityGroupId": "

The security group ID.

", "AnalysisSecurityGroupRule$PrefixListId": "

The prefix list ID.

", "AnalysisSecurityGroupRule$Protocol": "

The protocol name.

", @@ -16907,7 +16930,7 @@ "EventInformation$EventSubType": "

The event.

error events:

fleetRequestChange events:

instanceChange events:

Information events:

", "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 possible values:

", + "Explanation$Direction": "

The direction. The following are the possible values:

", "Explanation$ExplanationCode": "

The explanation code.

", "Explanation$MissingComponent": "

The missing component.

", "Explanation$PacketField": "

The packet field.

", @@ -17944,6 +17967,13 @@ "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:

", + "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.

", @@ -19394,6 +19424,13 @@ "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": { diff --git a/models/apis/ssm/2014-11-06/api-2.json b/models/apis/ssm/2014-11-06/api-2.json index 109750e0e63..3037d975daf 100644 --- a/models/apis/ssm/2014-11-06/api-2.json +++ b/models/apis/ssm/2014-11-06/api-2.json @@ -7291,7 +7291,8 @@ "ORACLE_LINUX", "DEBIAN", "MACOS", - "RASPBIAN" + "RASPBIAN", + "ROCKY_LINUX" ] }, "OpsAggregator":{ diff --git a/models/apis/ssm/2014-11-06/docs-2.json b/models/apis/ssm/2014-11-06/docs-2.json index 55f63446239..84ab2b19f22 100644 --- a/models/apis/ssm/2014-11-06/docs-2.json +++ b/models/apis/ssm/2014-11-06/docs-2.json @@ -2,7 +2,7 @@ "version": "2.0", "service": "

Amazon Web Services Systems Manager is a collection of capabilities that helps you automate management tasks such as collecting system inventory, applying operating system (OS) patches, automating the creation of Amazon Machine Images (AMIs), and configuring operating systems (OSs) and applications at scale. Systems Manager lets you remotely and securely manage the configuration of your managed nodes. A managed node is any Amazon Elastic Compute Cloud (Amazon EC2) instance, edge device, or on-premises server or virtual machine (VM) that has been configured for Systems Manager.

With support for IoT Greengrass core devices, the phrase managed instance has been changed to managed node in most of the Systems Manager documentation. The Systems Manager console, API calls, error messages, and SSM documents still use the term instance.

This reference is intended to be used with the Amazon Web Services Systems Manager User Guide.

To get started, verify prerequisites and configure managed nodes. For more information, see Setting up Amazon Web Services Systems Manager in the Amazon Web Services Systems Manager User Guide.

Related resources

", "operations": { - "AddTagsToResource": "

Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to your automations, documents, managed nodes, maintenance windows, Parameter Store parameters, and patch baselines. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define. For example, you could define a set of tags for your account's managed nodes that helps you track each node's owner and stack level. For example:

Most resources can have a maximum of 50 tags. Automations can have a maximum of 5 tags.

We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based on the tags you add. Tags don't have any semantic meaning to and are interpreted strictly as a string of characters.

For more information about using tags with Amazon Elastic Compute Cloud (Amazon EC2) instances, see Tagging your Amazon EC2 resources in the Amazon EC2 User Guide.

", + "AddTagsToResource": "

Adds or overwrites one or more tags for the specified resource. Tags are metadata that you can assign to your documents, managed nodes, maintenance windows, Parameter Store parameters, and patch baselines. Tags enable you to categorize your resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define. For example, you could define a set of tags for your account's managed nodes that helps you track each node's owner and stack level. For example:

Each resource can have a maximum of 50 tags.

We recommend that you devise a set of tag keys that meets your needs for each resource type. Using a consistent set of tag keys makes it easier for you to manage your resources. You can search and filter the resources based on the tags you add. Tags don't have any semantic meaning to and are interpreted strictly as a string of characters.

For more information about using tags with Amazon Elastic Compute Cloud (Amazon EC2) instances, see Tagging your Amazon EC2 resources in the Amazon EC2 User Guide.

", "AssociateOpsItemRelatedItem": "

Associates a related item to a Systems Manager OpsCenter OpsItem. For example, you can associate an Incident Manager incident or analysis with an OpsItem. Incident Manager and OpsCenter are capabilities of Amazon Web Services Systems Manager.

", "CancelCommand": "

Attempts to cancel the command specified by the Command ID. There is no guarantee that the command will be terminated and the underlying process stopped.

", "CancelMaintenanceWindowExecution": "

Stops a maintenance window execution that is already in progress and cancels any tasks in the window that haven't already starting running. Tasks already in progress will continue to completion.

", @@ -75,7 +75,7 @@ "GetMaintenanceWindowExecution": "

Retrieves details about a specific a maintenance window execution.

", "GetMaintenanceWindowExecutionTask": "

Retrieves the details about a specific task run as part of a maintenance window execution.

", "GetMaintenanceWindowExecutionTaskInvocation": "

Retrieves information about a specific task running on a specific target.

", - "GetMaintenanceWindowTask": "

Lists the tasks in a maintenance window.

For maintenance window tasks without a specified target, you can't supply values for --max-errors and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may be reported in the response to this command. These values don't affect the running of your task and can be ignored.

", + "GetMaintenanceWindowTask": "

Retrieves the details of a maintenance window task.

For maintenance window tasks without a specified target, you can't supply values for --max-errors and --max-concurrency. Instead, the system inserts a placeholder value of 1, which may be reported in the response to this command. These values don't affect the running of your task and can be ignored.

To retrieve a list of tasks in a maintenance window, instead use the DescribeMaintenanceWindowTasks command.

", "GetOpsItem": "

Get information about an OpsItem by using the ID. You must have permission in Identity and Access Management (IAM) to view information about an OpsItem. For more information, see Getting started with OpsCenter in the Amazon Web Services Systems Manager User Guide.

Operations engineers and IT professionals use Amazon Web Services Systems Manager OpsCenter to view, investigate, and remediate operational issues impacting the performance and health of their Amazon Web Services resources. For more information, see OpsCenter in the Amazon Web Services Systems Manager User Guide.

", "GetOpsMetadata": "

View operational metadata related to an application in Application Manager.

", "GetOpsSummary": "

View a summary of operations metadata (OpsData) based on specified filters and aggregators. OpsData can include information about Amazon Web Services Systems Manager OpsCenter operational workitems (OpsItems) as well as information about any Amazon Web Services resource or service configured to report OpsData to Amazon Web Services Systems Manager Explorer.

", @@ -126,7 +126,7 @@ "UpdateAssociation": "

Updates an association. You can update the association name and version, the document version, schedule, parameters, and Amazon Simple Storage Service (Amazon S3) output. When you call UpdateAssociation, the system removes all optional parameters from the request and overwrites the association with null values for those parameters. This is by design. You must specify all optional parameters in the call, even if you are not changing the parameters. This includes the Name parameter. Before calling this API action, we recommend that you call the DescribeAssociation API operation and make a note of all optional parameters required for your UpdateAssociation call.

In order to call this API operation, your Identity and Access Management (IAM) user account, group, or role must be configured with permission to call the DescribeAssociation API operation. If you don't have permission to call DescribeAssociation, then you receive the following error: An error occurred (AccessDeniedException) when calling the UpdateAssociation operation: User: <user_arn> isn't authorized to perform: ssm:DescribeAssociation on resource: <resource_arn>

When you update an association, the association immediately runs against the specified targets. You can add the ApplyOnlyAtCronInterval parameter to run the association during the next schedule run.

", "UpdateAssociationStatus": "

Updates the status of the Amazon Web Services Systems Manager document (SSM document) associated with the specified managed node.

UpdateAssociationStatus is primarily used by the Amazon Web Services Systems Manager Agent (SSM Agent) to report status updates about your associations and is only used for associations created with the InstanceId legacy parameter.

", "UpdateDocument": "

Updates one or more values for an SSM document.

", - "UpdateDocumentDefaultVersion": "

Set the default version of a document.

", + "UpdateDocumentDefaultVersion": "

Set the default version of a document.

If you change a document version for a State Manager association, Systems Manager immediately runs the association unless you previously specifed the apply-only-at-cron-interval parameter.

", "UpdateDocumentMetadata": "

Updates information related to approval reviews for a specific version of a change template in Change Manager.

", "UpdateMaintenanceWindow": "

Updates an existing maintenance window. Only specified parameters are modified.

The value you specify for Duration determines the specific end time for the maintenance window based on the time it begins. No maintenance window tasks are permitted to start after the resulting endtime minus the number of hours you specify for Cutoff. For example, if the maintenance window starts at 3 PM, the duration is three hours, and the value you specify for Cutoff is one hour, no maintenance window tasks can start after 5 PM.

", "UpdateMaintenanceWindowTarget": "

Modifies the target of an existing maintenance window. You can change the following:

If a parameter is null, then the corresponding field isn't modified.

", @@ -254,7 +254,7 @@ "AssociationVersionInfo$ApplyOnlyAtCronInterval": "

By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter isn't supported for rate expressions.

", "CreateAssociationBatchRequestEntry$ApplyOnlyAtCronInterval": "

By default, when you create a new associations, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter isn't supported for rate expressions.

", "CreateAssociationRequest$ApplyOnlyAtCronInterval": "

By default, when you create a new association, the system runs it immediately after it is created and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you create it. This parameter isn't supported for rate expressions.

", - "UpdateAssociationRequest$ApplyOnlyAtCronInterval": "

By default, when you update an association, the system runs it immediately after it is updated and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you update it. This parameter isn't supported for rate expressions.

Also, if you specified this option when you created the association, you can reset it. To do so, specify the no-apply-only-at-cron-interval parameter when you update the association from the command line. This parameter forces the association to run immediately after updating it and according to the interval specified.

" + "UpdateAssociationRequest$ApplyOnlyAtCronInterval": "

By default, when you update an association, the system runs it immediately after it is updated and then according to the schedule you specified. Specify this option if you don't want an association to run immediately after you update it. This parameter isn't supported for rate expressions.

If you chose this option when you created an association and later you edit that association or you make changes to the SSM document on which that association is based (by using the Documents page in the console), State Manager applies the association at the next specified cron interval. For example, if you chose the Latest version of an SSM document when you created an association and you edit the association by choosing a different document version on the Documents page, State Manager applies the association at the next specified cron interval if you previously selected this option. If this option wasn't selected, State Manager immediately runs the association.

You can reset this option. To do so, specify the no-apply-only-at-cron-interval parameter when you update the association from the command line. This parameter forces the association to run immediately after updating it and according to the interval specified.

" } }, "ApproveAfterDays": { @@ -2483,7 +2483,7 @@ "DocumentVersion": { "base": null, "refs": { - "Association$DocumentVersion": "

The version of the document used in the association.

State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the default version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to default.

", + "Association$DocumentVersion": "

The version of the document used in the association. If you change a document version for a State Manager association, Systems Manager immediately runs the association unless you previously specifed the apply-only-at-cron-interval parameter.

State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the default version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to default.

", "AssociationDescription$DocumentVersion": "

The document version.

", "AssociationVersionInfo$DocumentVersion": "

The version of an Amazon Web Services Systems Manager document (SSM document) used when the association version was created.

", "AutomationExecution$DocumentVersion": "

The version of the document to use during execution.

", @@ -2517,7 +2517,7 @@ "StartChangeRequestExecutionRequest$DocumentVersion": "

The version of the change template document to run during the runbook workflow.

", "UpdateAssociationRequest$DocumentVersion": "

The document version you want update for the association.

State Manager doesn't support running associations that use a new version of a document if that document is shared from another account. State Manager always runs the default version of a document if shared from another account, even though the Systems Manager console shows that a new version was processed. If you want to run an association using a new version of a document shared form another account, you must set the document version to default.

", "UpdateDocumentMetadataRequest$DocumentVersion": "

The version of a change template in which to update approval metadata.

", - "UpdateDocumentRequest$DocumentVersion": "

The version of the document that you want to update. Currently, Systems Manager supports updating only the latest version of the document. You can specify the version number of the latest version or use the $LATEST variable.

" + "UpdateDocumentRequest$DocumentVersion": "

The version of the document that you want to update. Currently, Systems Manager supports updating only the latest version of the document. You can specify the version number of the latest version or use the $LATEST variable.

If you change a document version for a State Manager association, Systems Manager immediately runs the association unless you previously specifed the apply-only-at-cron-interval parameter.

" } }, "DocumentVersionInfo": { @@ -6825,9 +6825,9 @@ "ResourceId": { "base": null, "refs": { - "AddTagsToResourceRequest$ResourceId": "

The resource ID you want to tag.

Use the ID of the resource. Here are some examples:

MaintenanceWindow: mw-012345abcde

PatchBaseline: pb-012345abcde

Automation: example-c160-4567-8519-012345abcde

OpsMetadata object: ResourceID for tagging is created from the Amazon Resource Name (ARN) for the object. Specifically, ResourceID is created from the strings that come after the word opsmetadata in the ARN. For example, an OpsMetadata object with an ARN of arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager has a ResourceID of either aws/ssm/MyGroup/appmanager or /aws/ssm/MyGroup/appmanager.

For the Document and Parameter values, use the name of the resource.

ManagedInstance: mi-012345abcde

The ManagedInstance type for this API operation is only for on-premises managed nodes. You must specify the name of the managed node in the following format: mi-ID_number . For example, mi-1a2b3c4d5e6f.

", + "AddTagsToResourceRequest$ResourceId": "

The resource ID you want to tag.

Use the ID of the resource. Here are some examples:

MaintenanceWindow: mw-012345abcde

PatchBaseline: pb-012345abcde

OpsMetadata object: ResourceID for tagging is created from the Amazon Resource Name (ARN) for the object. Specifically, ResourceID is created from the strings that come after the word opsmetadata in the ARN. For example, an OpsMetadata object with an ARN of arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager has a ResourceID of either aws/ssm/MyGroup/appmanager or /aws/ssm/MyGroup/appmanager.

For the Document and Parameter values, use the name of the resource.

ManagedInstance: mi-012345abcde

The ManagedInstance type for this API operation is only for on-premises managed nodes. You must specify the name of the managed node in the following format: mi-ID_number . For example, mi-1a2b3c4d5e6f.

", "ListTagsForResourceRequest$ResourceId": "

The resource ID for which you want to see a list of tags.

", - "RemoveTagsFromResourceRequest$ResourceId": "

The ID of the resource from which you want to remove tags. For example:

ManagedInstance: mi-012345abcde

MaintenanceWindow: mw-012345abcde

Automation: example-c160-4567-8519-012345abcde

PatchBaseline: pb-012345abcde

OpsMetadata object: ResourceID for tagging is created from the Amazon Resource Name (ARN) for the object. Specifically, ResourceID is created from the strings that come after the word opsmetadata in the ARN. For example, an OpsMetadata object with an ARN of arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager has a ResourceID of either aws/ssm/MyGroup/appmanager or /aws/ssm/MyGroup/appmanager.

For the Document and Parameter values, use the name of the resource.

The ManagedInstance type for this API operation is only for on-premises managed nodes. Specify the name of the managed node in the following format: mi-ID_number. For example, mi-1a2b3c4d5e6f.

" + "RemoveTagsFromResourceRequest$ResourceId": "

The ID of the resource from which you want to remove tags. For example:

ManagedInstance: mi-012345abcde

MaintenanceWindow: mw-012345abcde

PatchBaseline: pb-012345abcde

OpsMetadata object: ResourceID for tagging is created from the Amazon Resource Name (ARN) for the object. Specifically, ResourceID is created from the strings that come after the word opsmetadata in the ARN. For example, an OpsMetadata object with an ARN of arn:aws:ssm:us-east-2:1234567890:opsmetadata/aws/ssm/MyGroup/appmanager has a ResourceID of either aws/ssm/MyGroup/appmanager or /aws/ssm/MyGroup/appmanager.

For the Document and Parameter values, use the name of the resource.

The ManagedInstance type for this API operation is only for on-premises managed nodes. Specify the name of the managed node in the following format: mi-ID_number. For example, mi-1a2b3c4d5e6f.

" } }, "ResourceInUseException": { @@ -7623,7 +7623,7 @@ "DocumentIdentifier$Tags": "

The tags, or metadata, that have been applied to the document.

", "ListTagsForResourceResult$TagList": "

A list of tags.

", "PutParameterRequest$Tags": "

Optional metadata that you assign to a resource. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a Systems Manager parameter to identify the type of resource to which it applies, the environment, or the type of configuration data referenced by the parameter. In this case, you could specify the following key-value pairs:

To add tags to an existing Systems Manager parameter, use the AddTagsToResource operation.

", - "StartAutomationExecutionRequest$Tags": "

Optional metadata that you assign to a resource. You can specify a maximum of five tags for an automation. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag an automation to identify an environment or operating system. In this case, you could specify the following key-value pairs:

To add tags to an existing automation, use the AddTagsToResource operation.

", + "StartAutomationExecutionRequest$Tags": "

Optional metadata that you assign to a resource. You can specify a maximum of five tags for an automation. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag an automation to identify an environment or operating system. In this case, you could specify the following key-value pairs:

To add tags to an existing patch baseline, use the AddTagsToResource operation.

", "StartChangeRequestExecutionRequest$Tags": "

Optional metadata that you assign to a resource. You can specify a maximum of five tags for a change request. Tags enable you to categorize a resource in different ways, such as by purpose, owner, or environment. For example, you might want to tag a change request to identify an environment or target Amazon Web Services Region. In this case, you could specify the following key-value pairs:

" } }, diff --git a/service/batch/api.go b/service/batch/api.go index dc01402f2a5..423cb0bd365 100644 --- a/service/batch/api.go +++ b/service/batch/api.go @@ -1871,7 +1871,7 @@ func (c *Batch) SubmitJobRequest(input *SubmitJobInput) (req *request.Request, o // 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 +// 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 @@ -3639,9 +3639,9 @@ type ContainerDetail struct { // a log stream name when they reach the RUNNING status. LogStreamName *string `locationName:"logStreamName" type:"string"` - // For jobs run 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. + // 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. Memory *int64 `locationName:"memory" type:"integer"` // The mount points for data volumes in your container. @@ -3918,7 +3918,7 @@ type ContainerOverrides struct { // This parameter is deprecated, use resourceRequirements to override the memory // requirements specified in the job definition. It's not supported for jobs - // that run on Fargate resources. For jobs run on EC2 resources, it overrides + // running on Fargate resources. For jobs running on EC2 resources, it overrides // the memory parameter set in the job definition, but doesn't override any // memory requirement specified in the resourceRequirements structure in the // job definition. To override memory requirements that are specified in the @@ -3937,8 +3937,8 @@ type ContainerOverrides struct { ResourceRequirements []*ResourceRequirement `locationName:"resourceRequirements" type:"list"` // This parameter is deprecated, use resourceRequirements to override the vcpus - // parameter that's set in the job definition. It's not supported for jobs that - // run on Fargate resources. For jobs run on EC2 resources, it overrides the + // parameter that's set in the job definition. It's not supported for jobs running + // on Fargate resources. For jobs running 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 @@ -4074,6 +4074,9 @@ type ContainerProperties struct { // resources that they're scheduled on. For example, ARM-based Docker images // can only run on ARM-based compute resources. // + // * Images in Amazon ECR Public repositories use the full registry/repository[:tag] + // or registry/repository[@digest] naming conventions. For example, public.ecr.aws/registry_alias/my-web-app:latest . + // // * Images in Amazon ECR repositories use the full registry and repository // URI (for example, 012345678910.dkr.ecr..amazonaws.com/). // @@ -4135,12 +4138,13 @@ type ContainerProperties struct { LogConfiguration *LogConfiguration `locationName:"logConfiguration" type:"structure"` // This parameter is deprecated, use resourceRequirements to specify the memory - // requirements for the job definition. It's not supported for jobs that run - // on Fargate resources. For jobs 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. + // requirements for the job definition. It's not supported for jobs running + // on Fargate resources. For jobs running 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. // // Deprecated: This field is deprecated, use resourceRequirements instead. Memory *int64 `locationName:"memory" deprecated:"true" type:"integer"` @@ -4198,9 +4202,9 @@ type ContainerProperties struct { User *string `locationName:"user" type:"string"` // This parameter is deprecated, use resourceRequirements to specify the vCPU - // requirements for the job definition. It's not supported for jobs that run - // on Fargate resources. For jobs run on EC2 resources, it specifies the number - // of vCPUs reserved for the job. + // 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 (https://docs.docker.com/engine/api/v1.23/#create-a-container) @@ -4536,7 +4540,7 @@ type CreateComputeEnvironmentInput struct { // 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/ + // This parameter is only supported when the type parameter is set to UNMANAGED. UnmanagedvCpus *int64 `locationName:"unmanagedvCpus" type:"integer"` } diff --git a/service/ec2/api.go b/service/ec2/api.go index 3ab928799eb..f458cb39ab7 100644 --- a/service/ec2/api.go +++ b/service/ec2/api.go @@ -49747,6 +49747,47 @@ func (s *AddPrefixListEntry) SetDescription(v string) *AddPrefixListEntry { return s } +// Describes an additional detail for a path analysis. +type AdditionalDetail struct { + _ struct{} `type:"structure"` + + // The information type. + AdditionalDetailType *string `locationName:"additionalDetailType" type:"string"` + + // The path component. + Component *AnalysisComponent `locationName:"component" type:"structure"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s AdditionalDetail) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s AdditionalDetail) GoString() string { + return s.String() +} + +// SetAdditionalDetailType sets the AdditionalDetailType field's value. +func (s *AdditionalDetail) SetAdditionalDetailType(v string) *AdditionalDetail { + s.AdditionalDetailType = &v + return s +} + +// SetComponent sets the Component field's value. +func (s *AdditionalDetail) SetComponent(v *AnalysisComponent) *AdditionalDetail { + s.Component = v + return s +} + // Describes an Elastic IP address, or a carrier IP address. type Address struct { _ struct{} `type:"structure"` @@ -50993,7 +51034,7 @@ type AnalysisRouteTableRoute struct { // The ID of a network interface. NetworkInterfaceId *string `locationName:"networkInterfaceId" type:"string"` - // Describes how the route was created. The following are possible values: + // Describes how the route was created. The following are the possible values: // // * CreateRouteTable - The route was automatically created when the route // table was created. @@ -51095,7 +51136,7 @@ type AnalysisSecurityGroupRule struct { // The IPv4 address range, in CIDR notation. Cidr *string `locationName:"cidr" type:"string"` - // The direction. The following are possible values: + // The direction. The following are the possible values: // // * egress // @@ -87271,7 +87312,7 @@ type DescribeNetworkInsightsAnalysesInput struct { // it is UnauthorizedOperation. DryRun *bool `type:"boolean"` - // The filters. The following are possible values: + // The filters. The following are the possible values: // // * PathFound - A Boolean value that indicates whether a feasible path is // found. @@ -87423,7 +87464,7 @@ type DescribeNetworkInsightsPathsInput struct { // it is UnauthorizedOperation. DryRun *bool `type:"boolean"` - // The filters. The following are possible values: + // The filters. The following are the possible values: // // * Destination - The ID of the resource. // @@ -101980,7 +102021,7 @@ type Explanation struct { // The destination VPC. DestinationVpc *AnalysisComponent `locationName:"destinationVpc" type:"structure"` - // The direction. The following are possible values: + // The direction. The following are the possible values: // // * egress // @@ -102068,6 +102109,18 @@ type Explanation struct { // The route table for the subnet. SubnetRouteTable *AnalysisComponent `locationName:"subnetRouteTable" type:"structure"` + // The transit gateway. + TransitGateway *AnalysisComponent `locationName:"transitGateway" type:"structure"` + + // The transit gateway attachment. + TransitGatewayAttachment *AnalysisComponent `locationName:"transitGatewayAttachment" type:"structure"` + + // The transit gateway route table. + TransitGatewayRouteTable *AnalysisComponent `locationName:"transitGatewayRouteTable" type:"structure"` + + // The transit gateway route table route. + TransitGatewayRouteTableRoute *TransitGatewayRouteTableRoute `locationName:"transitGatewayRouteTableRoute" type:"structure"` + // The component VPC. Vpc *AnalysisComponent `locationName:"vpc" type:"structure"` @@ -102342,6 +102395,30 @@ func (s *Explanation) SetSubnetRouteTable(v *AnalysisComponent) *Explanation { return s } +// SetTransitGateway sets the TransitGateway field's value. +func (s *Explanation) SetTransitGateway(v *AnalysisComponent) *Explanation { + s.TransitGateway = v + return s +} + +// SetTransitGatewayAttachment sets the TransitGatewayAttachment field's value. +func (s *Explanation) SetTransitGatewayAttachment(v *AnalysisComponent) *Explanation { + s.TransitGatewayAttachment = v + return s +} + +// SetTransitGatewayRouteTable sets the TransitGatewayRouteTable field's value. +func (s *Explanation) SetTransitGatewayRouteTable(v *AnalysisComponent) *Explanation { + s.TransitGatewayRouteTable = v + return s +} + +// SetTransitGatewayRouteTableRoute sets the TransitGatewayRouteTableRoute field's value. +func (s *Explanation) SetTransitGatewayRouteTableRoute(v *TransitGatewayRouteTableRoute) *Explanation { + s.TransitGatewayRouteTableRoute = v + return s +} + // SetVpc sets the Vpc field's value. func (s *Explanation) SetVpc(v *AnalysisComponent) *Explanation { s.Vpc = v @@ -133920,6 +133997,9 @@ type PathComponent struct { // The network ACL rule. AclRule *AnalysisAclRule `locationName:"aclRule" type:"structure"` + // The additional details. + AdditionalDetails []*AdditionalDetail `locationName:"additionalDetailSet" locationNameList:"item" type:"list"` + // The resource to which the path component is attached. AttachedTo *AnalysisComponent `locationName:"attachedTo" type:"structure"` @@ -133950,6 +134030,12 @@ type PathComponent struct { // The subnet. Subnet *AnalysisComponent `locationName:"subnet" type:"structure"` + // Describes a path component. + TransitGateway *AnalysisComponent `locationName:"transitGateway" type:"structure"` + + // The route in a transit gateway route table. + TransitGatewayRouteTableRoute *TransitGatewayRouteTableRoute `locationName:"transitGatewayRouteTableRoute" type:"structure"` + // The component VPC. Vpc *AnalysisComponent `locationName:"vpc" type:"structure"` } @@ -133978,6 +134064,12 @@ func (s *PathComponent) SetAclRule(v *AnalysisAclRule) *PathComponent { return s } +// SetAdditionalDetails sets the AdditionalDetails field's value. +func (s *PathComponent) SetAdditionalDetails(v []*AdditionalDetail) *PathComponent { + s.AdditionalDetails = v + return s +} + // SetAttachedTo sets the AttachedTo field's value. func (s *PathComponent) SetAttachedTo(v *AnalysisComponent) *PathComponent { s.AttachedTo = v @@ -134038,6 +134130,18 @@ func (s *PathComponent) SetSubnet(v *AnalysisComponent) *PathComponent { return s } +// SetTransitGateway sets the TransitGateway field's value. +func (s *PathComponent) SetTransitGateway(v *AnalysisComponent) *PathComponent { + s.TransitGateway = v + return s +} + +// SetTransitGatewayRouteTableRoute sets the TransitGatewayRouteTableRoute field's value. +func (s *PathComponent) SetTransitGatewayRouteTableRoute(v *TransitGatewayRouteTableRoute) *PathComponent { + s.TransitGatewayRouteTableRoute = v + return s +} + // SetVpc sets the Vpc field's value. func (s *PathComponent) SetVpc(v *AnalysisComponent) *PathComponent { s.Vpc = v @@ -155627,6 +155731,96 @@ func (s *TransitGatewayRouteTablePropagation) SetTransitGatewayAttachmentId(v st return s } +// Describes a route in a transit gateway route table. +type TransitGatewayRouteTableRoute struct { + _ struct{} `type:"structure"` + + // The ID of the route attachment. + AttachmentId *string `locationName:"attachmentId" type:"string"` + + // The CIDR block used for destination matches. + DestinationCidr *string `locationName:"destinationCidr" type:"string"` + + // The ID of the prefix list. + PrefixListId *string `locationName:"prefixListId" type:"string"` + + // The ID of the resource for the route attachment. + ResourceId *string `locationName:"resourceId" type:"string"` + + // The resource type for the route attachment. + ResourceType *string `locationName:"resourceType" type:"string"` + + // The route origin. The following are the possible values: + // + // * static + // + // * propagated + RouteOrigin *string `locationName:"routeOrigin" type:"string"` + + // The state of the route. + State *string `locationName:"state" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s TransitGatewayRouteTableRoute) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s TransitGatewayRouteTableRoute) GoString() string { + return s.String() +} + +// SetAttachmentId sets the AttachmentId field's value. +func (s *TransitGatewayRouteTableRoute) SetAttachmentId(v string) *TransitGatewayRouteTableRoute { + s.AttachmentId = &v + return s +} + +// SetDestinationCidr sets the DestinationCidr field's value. +func (s *TransitGatewayRouteTableRoute) SetDestinationCidr(v string) *TransitGatewayRouteTableRoute { + s.DestinationCidr = &v + return s +} + +// SetPrefixListId sets the PrefixListId field's value. +func (s *TransitGatewayRouteTableRoute) SetPrefixListId(v string) *TransitGatewayRouteTableRoute { + s.PrefixListId = &v + return s +} + +// SetResourceId sets the ResourceId field's value. +func (s *TransitGatewayRouteTableRoute) SetResourceId(v string) *TransitGatewayRouteTableRoute { + s.ResourceId = &v + return s +} + +// SetResourceType sets the ResourceType field's value. +func (s *TransitGatewayRouteTableRoute) SetResourceType(v string) *TransitGatewayRouteTableRoute { + s.ResourceType = &v + return s +} + +// SetRouteOrigin sets the RouteOrigin field's value. +func (s *TransitGatewayRouteTableRoute) SetRouteOrigin(v string) *TransitGatewayRouteTableRoute { + s.RouteOrigin = &v + return s +} + +// SetState sets the State field's value. +func (s *TransitGatewayRouteTableRoute) SetState(v string) *TransitGatewayRouteTableRoute { + s.State = &v + return s +} + // Describes a VPC attachment. type TransitGatewayVpcAttachment struct { _ struct{} `type:"structure"` diff --git a/service/ssm/api.go b/service/ssm/api.go index d97b5d62331..be7a9bfed4a 100644 --- a/service/ssm/api.go +++ b/service/ssm/api.go @@ -59,13 +59,13 @@ func (c *SSM) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *requ // AddTagsToResource API operation for Amazon Simple Systems Manager (SSM). // // Adds or overwrites one or more tags for the specified resource. Tags are -// metadata that you can assign to your automations, documents, managed nodes, -// maintenance windows, Parameter Store parameters, and patch baselines. Tags -// enable you to categorize your resources in different ways, for example, by -// purpose, owner, or environment. Each tag consists of a key and an optional -// value, both of which you define. For example, you could define a set of tags -// for your account's managed nodes that helps you track each node's owner and -// stack level. For example: +// metadata that you can assign to your documents, managed nodes, maintenance +// windows, Parameter Store parameters, and patch baselines. Tags enable you +// to categorize your resources in different ways, for example, by purpose, +// owner, or environment. Each tag consists of a key and an optional value, +// both of which you define. For example, you could define a set of tags for +// your account's managed nodes that helps you track each node's owner and stack +// level. For example: // // * Key=Owner,Value=DbAdmin // @@ -79,8 +79,7 @@ func (c *SSM) AddTagsToResourceRequest(input *AddTagsToResourceInput) (req *requ // // * Key=Stack,Value=Test // -// Most resources can have a maximum of 50 tags. Automations can have a maximum -// of 5 tags. +// Each resource can have a maximum of 50 tags. // // We recommend that you devise a set of tag keys that meets your needs for // each resource type. Using a consistent set of tag keys makes it easier for @@ -8599,13 +8598,16 @@ func (c *SSM) GetMaintenanceWindowTaskRequest(input *GetMaintenanceWindowTaskInp // GetMaintenanceWindowTask API operation for Amazon Simple Systems Manager (SSM). // -// Lists the tasks in a maintenance window. +// Retrieves the details of a maintenance window task. // // For maintenance window tasks without a specified target, you can't supply // values for --max-errors and --max-concurrency. Instead, the system inserts // a placeholder value of 1, which may be reported in the response to this command. // These values don't affect the running of your task and can be ignored. // +// To retrieve a list of tasks in a maintenance window, instead use the DescribeMaintenanceWindowTasks +// command. +// // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. @@ -14559,6 +14561,10 @@ func (c *SSM) UpdateDocumentDefaultVersionRequest(input *UpdateDocumentDefaultVe // // Set the default version of a document. // +// If you change a document version for a State Manager association, Systems +// Manager immediately runs the association unless you previously specifed the +// apply-only-at-cron-interval parameter. +// // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about // the error. @@ -15767,8 +15773,6 @@ type AddTagsToResourceInput struct { // // PatchBaseline: pb-012345abcde // - // Automation: example-c160-4567-8519-012345abcde - // // OpsMetadata object: ResourceID for tagging is created from the Amazon Resource // Name (ARN) for the object. Specifically, ResourceID is created from the strings // that come after the word opsmetadata in the ARN. For example, an OpsMetadata @@ -16162,7 +16166,10 @@ type Association struct { // The association version. AssociationVersion *string `type:"string"` - // The version of the document used in the association. + // The version of the document used in the association. If you change a document + // version for a State Manager association, Systems Manager immediately runs + // the association unless you previously specifed the apply-only-at-cron-interval + // parameter. // // State Manager doesn't support running associations that use a new version // of a document if that document is shared from another account. State Manager @@ -49655,8 +49662,6 @@ type RemoveTagsFromResourceInput struct { // // MaintenanceWindow: mw-012345abcde // - // Automation: example-c160-4567-8519-012345abcde - // // PatchBaseline: pb-012345abcde // // OpsMetadata object: ResourceID for tagging is created from the Amazon Resource @@ -52672,7 +52677,7 @@ type StartAutomationExecutionInput struct { // // * Key=OS,Value=Windows // - // To add tags to an existing automation, use the AddTagsToResource operation. + // To add tags to an existing patch baseline, use the AddTagsToResource operation. Tags []*Tag `type:"list"` // A location is a combination of Amazon Web Services Regions and/or Amazon @@ -55046,11 +55051,20 @@ type UpdateAssociationInput struct { // this option if you don't want an association to run immediately after you // update it. This parameter isn't supported for rate expressions. // - // Also, if you specified this option when you created the association, you - // can reset it. To do so, specify the no-apply-only-at-cron-interval parameter - // when you update the association from the command line. This parameter forces - // the association to run immediately after updating it and according to the - // interval specified. + // If you chose this option when you created an association and later you edit + // that association or you make changes to the SSM document on which that association + // is based (by using the Documents page in the console), State Manager applies + // the association at the next specified cron interval. For example, if you + // chose the Latest version of an SSM document when you created an association + // and you edit the association by choosing a different document version on + // the Documents page, State Manager applies the association at the next specified + // cron interval if you previously selected this option. If this option wasn't + // selected, State Manager immediately runs the association. + // + // You can reset this option. To do so, specify the no-apply-only-at-cron-interval + // parameter when you update the association from the command line. This parameter + // forces the association to run immediately after updating it and according + // to the interval specified. ApplyOnlyAtCronInterval *bool `type:"boolean"` // The ID of the association you want to update. @@ -55606,6 +55620,10 @@ type UpdateDocumentInput struct { // The version of the document that you want to update. Currently, Systems Manager // supports updating only the latest version of the document. You can specify // the version number of the latest version or use the $LATEST variable. + // + // If you change a document version for a State Manager association, Systems + // Manager immediately runs the association unless you previously specifed the + // apply-only-at-cron-interval parameter. DocumentVersion *string `type:"string"` // The name of the SSM document that you want to update. @@ -59159,6 +59177,9 @@ const ( // OperatingSystemRaspbian is a OperatingSystem enum value OperatingSystemRaspbian = "RASPBIAN" + + // OperatingSystemRockyLinux is a OperatingSystem enum value + OperatingSystemRockyLinux = "ROCKY_LINUX" ) // OperatingSystem_Values returns all elements of the OperatingSystem enum @@ -59175,6 +59196,7 @@ func OperatingSystem_Values() []string { OperatingSystemDebian, OperatingSystemMacos, OperatingSystemRaspbian, + OperatingSystemRockyLinux, } }