aws-sdk-ec2 1.361.0 → 1.362.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed8071b814f41602079376eb77b0bcd638a003c8acd21576d6c6d45bf818e338
4
- data.tar.gz: c59bcfa87254a1af3f92c38fc1dbf3b623f901a32cc7116066d99f8f51a712c6
3
+ metadata.gz: 48cb75880216429c79c2002d92efd523dbd1f173d887b5ed2e98d5d3d23f5543
4
+ data.tar.gz: 48451658ef09b098fcc10ff057fde9808b0603b3aa63800a2913ff7988cf2363
5
5
  SHA512:
6
- metadata.gz: 824454d838cf6465107462cf46c21cd52bc95a7ded4c00c37da688113ffb47c475aab4e56394f3062db693b5f07e6384626cfeb60ef7e92af1fb5fbaf5d5f5e1
7
- data.tar.gz: 12e2bc2eece0ea4af48d00dcf3aa40132b555dc7f0bfcb8a5e5e3b45b896d432954f245884eb8fc4df109bf4f971f0f21837a262aa5a98ddb23c676661e09358
6
+ metadata.gz: cd6533072a7fd8c41c145de0758128568ac3ffeb2576397747865c59806c2877f0718993640369c713e4ee2d826a9f05b1f1853ae97766ddc2236efe19b6ef27
7
+ data.tar.gz: 68b4369f8a42ccfe0690572c8c91c1128f483ad9404572028cb0c466c4b44065f8c4a473f73d065d4916179c0bce222a6e23cbc67bd66ecbb03ef49cb4c173da
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.362.0 (2023-01-30)
5
+ ------------------
6
+
7
+ * Feature - We add Prefix Lists as a new route destination option for LocalGatewayRoutes. This will allow customers to create routes to Prefix Lists. Prefix List routes will allow customers to group individual CIDR routes with the same target into a single route.
8
+
4
9
  1.361.0 (2023-01-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.361.0
1
+ 1.362.0
@@ -1793,8 +1793,8 @@ module Aws::EC2
1793
1793
  # @example Request syntax with placeholder values
1794
1794
  #
1795
1795
  # resp = client.associate_enclave_certificate_iam_role({
1796
- # certificate_arn: "ResourceArn",
1797
- # role_arn: "ResourceArn",
1796
+ # certificate_arn: "CertificateId",
1797
+ # role_arn: "RoleId",
1798
1798
  # dry_run: false,
1799
1799
  # })
1800
1800
  #
@@ -8616,7 +8616,7 @@ module Aws::EC2
8616
8616
  #
8617
8617
  # * `NetworkInterfaceId`
8618
8618
  #
8619
- # @option params [required, String] :destination_cidr_block
8619
+ # @option params [String] :destination_cidr_block
8620
8620
  # The CIDR range used for destination matches. Routing decisions are
8621
8621
  # based on the most specific match.
8622
8622
  #
@@ -8635,6 +8635,11 @@ module Aws::EC2
8635
8635
  # @option params [String] :network_interface_id
8636
8636
  # The ID of the network interface.
8637
8637
  #
8638
+ # @option params [String] :destination_prefix_list_id
8639
+ # The ID of the prefix list. Use a prefix list in place of
8640
+ # `DestinationCidrBlock`. You cannot use `DestinationPrefixListId` and
8641
+ # `DestinationCidrBlock` in the same request.
8642
+ #
8638
8643
  # @return [Types::CreateLocalGatewayRouteResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8639
8644
  #
8640
8645
  # * {Types::CreateLocalGatewayRouteResult#route #route} => Types::LocalGatewayRoute
@@ -8642,11 +8647,12 @@ module Aws::EC2
8642
8647
  # @example Request syntax with placeholder values
8643
8648
  #
8644
8649
  # resp = client.create_local_gateway_route({
8645
- # destination_cidr_block: "String", # required
8650
+ # destination_cidr_block: "String",
8646
8651
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
8647
8652
  # local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
8648
8653
  # dry_run: false,
8649
8654
  # network_interface_id: "NetworkInterfaceId",
8655
+ # destination_prefix_list_id: "PrefixListResourceId",
8650
8656
  # })
8651
8657
  #
8652
8658
  # @example Response structure
@@ -8661,6 +8667,7 @@ module Aws::EC2
8661
8667
  # resp.route.subnet_id #=> String
8662
8668
  # resp.route.coip_pool_id #=> String
8663
8669
  # resp.route.network_interface_id #=> String
8670
+ # resp.route.destination_prefix_list_id #=> String
8664
8671
  #
8665
8672
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRoute AWS API Documentation
8666
8673
  #
@@ -11162,7 +11169,7 @@ module Aws::EC2
11162
11169
  # resp = client.create_snapshots({
11163
11170
  # description: "String",
11164
11171
  # instance_specification: { # required
11165
- # instance_id: "InstanceId",
11172
+ # instance_id: "InstanceIdWithVolumeResolver", # required
11166
11173
  # exclude_boot_volume: false,
11167
11174
  # exclude_data_volume_ids: ["VolumeId"],
11168
11175
  # },
@@ -15805,7 +15812,7 @@ module Aws::EC2
15805
15812
  # Deletes the specified route from the specified local gateway route
15806
15813
  # table.
15807
15814
  #
15808
- # @option params [required, String] :destination_cidr_block
15815
+ # @option params [String] :destination_cidr_block
15809
15816
  # The CIDR range for the route. This must match the CIDR for the route
15810
15817
  # exactly.
15811
15818
  #
@@ -15818,6 +15825,11 @@ module Aws::EC2
15818
15825
  # If you have the required permissions, the error response is
15819
15826
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
15820
15827
  #
15828
+ # @option params [String] :destination_prefix_list_id
15829
+ # Use a prefix list in place of `DestinationCidrBlock`. You cannot use
15830
+ # `DestinationPrefixListId` and `DestinationCidrBlock` in the same
15831
+ # request.
15832
+ #
15821
15833
  # @return [Types::DeleteLocalGatewayRouteResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
15822
15834
  #
15823
15835
  # * {Types::DeleteLocalGatewayRouteResult#route #route} => Types::LocalGatewayRoute
@@ -15825,9 +15837,10 @@ module Aws::EC2
15825
15837
  # @example Request syntax with placeholder values
15826
15838
  #
15827
15839
  # resp = client.delete_local_gateway_route({
15828
- # destination_cidr_block: "String", # required
15840
+ # destination_cidr_block: "String",
15829
15841
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
15830
15842
  # dry_run: false,
15843
+ # destination_prefix_list_id: "PrefixListResourceId",
15831
15844
  # })
15832
15845
  #
15833
15846
  # @example Response structure
@@ -15842,6 +15855,7 @@ module Aws::EC2
15842
15855
  # resp.route.subnet_id #=> String
15843
15856
  # resp.route.coip_pool_id #=> String
15844
15857
  # resp.route.network_interface_id #=> String
15858
+ # resp.route.destination_prefix_list_id #=> String
15845
15859
  #
15846
15860
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRoute AWS API Documentation
15847
15861
  #
@@ -16994,7 +17008,7 @@ module Aws::EC2
16994
17008
  # @example Request syntax with placeholder values
16995
17009
  #
16996
17010
  # resp = client.delete_traffic_mirror_filter_rule({
16997
- # traffic_mirror_filter_rule_id: "TrafficMirrorFilterRuleId", # required
17011
+ # traffic_mirror_filter_rule_id: "TrafficMirrorFilterRuleIdWithResolver", # required
16998
17012
  # dry_run: false,
16999
17013
  # })
17000
17014
  #
@@ -36941,8 +36955,8 @@ module Aws::EC2
36941
36955
  # @example Request syntax with placeholder values
36942
36956
  #
36943
36957
  # resp = client.disassociate_enclave_certificate_iam_role({
36944
- # certificate_arn: "ResourceArn",
36945
- # role_arn: "ResourceArn",
36958
+ # certificate_arn: "CertificateId",
36959
+ # role_arn: "RoleId",
36946
36960
  # dry_run: false,
36947
36961
  # })
36948
36962
  #
@@ -38482,7 +38496,7 @@ module Aws::EC2
38482
38496
  # @example Request syntax with placeholder values
38483
38497
  #
38484
38498
  # resp = client.get_associated_enclave_certificate_iam_roles({
38485
- # certificate_arn: "ResourceArn",
38499
+ # certificate_arn: "CertificateId",
38486
38500
  # dry_run: false,
38487
38501
  # })
38488
38502
  #
@@ -45112,7 +45126,7 @@ module Aws::EC2
45112
45126
 
45113
45127
  # Modifies the specified local gateway route.
45114
45128
  #
45115
- # @option params [required, String] :destination_cidr_block
45129
+ # @option params [String] :destination_cidr_block
45116
45130
  # The CIDR block used for destination matches. The value that you
45117
45131
  # provide must match the CIDR of an existing route in the table.
45118
45132
  #
@@ -45131,6 +45145,11 @@ module Aws::EC2
45131
45145
  # If you have the required permissions, the error response is
45132
45146
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
45133
45147
  #
45148
+ # @option params [String] :destination_prefix_list_id
45149
+ # The ID of the prefix list. Use a prefix list in place of
45150
+ # `DestinationCidrBlock`. You cannot use `DestinationPrefixListId` and
45151
+ # `DestinationCidrBlock` in the same request.
45152
+ #
45134
45153
  # @return [Types::ModifyLocalGatewayRouteResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
45135
45154
  #
45136
45155
  # * {Types::ModifyLocalGatewayRouteResult#route #route} => Types::LocalGatewayRoute
@@ -45138,11 +45157,12 @@ module Aws::EC2
45138
45157
  # @example Request syntax with placeholder values
45139
45158
  #
45140
45159
  # resp = client.modify_local_gateway_route({
45141
- # destination_cidr_block: "String", # required
45160
+ # destination_cidr_block: "String",
45142
45161
  # local_gateway_route_table_id: "LocalGatewayRoutetableId", # required
45143
45162
  # local_gateway_virtual_interface_group_id: "LocalGatewayVirtualInterfaceGroupId",
45144
45163
  # network_interface_id: "NetworkInterfaceId",
45145
45164
  # dry_run: false,
45165
+ # destination_prefix_list_id: "PrefixListResourceId",
45146
45166
  # })
45147
45167
  #
45148
45168
  # @example Response structure
@@ -45157,6 +45177,7 @@ module Aws::EC2
45157
45177
  # resp.route.subnet_id #=> String
45158
45178
  # resp.route.coip_pool_id #=> String
45159
45179
  # resp.route.network_interface_id #=> String
45180
+ # resp.route.destination_prefix_list_id #=> String
45160
45181
  #
45161
45182
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRoute AWS API Documentation
45162
45183
  #
@@ -46186,7 +46207,7 @@ module Aws::EC2
46186
46207
  # @example Request syntax with placeholder values
46187
46208
  #
46188
46209
  # resp = client.modify_traffic_mirror_filter_rule({
46189
- # traffic_mirror_filter_rule_id: "TrafficMirrorFilterRuleId", # required
46210
+ # traffic_mirror_filter_rule_id: "TrafficMirrorFilterRuleIdWithResolver", # required
46190
46211
  # traffic_direction: "ingress", # accepts ingress, egress
46191
46212
  # rule_number: 1,
46192
46213
  # rule_action: "accept", # accepts accept, reject
@@ -53477,6 +53498,8 @@ module Aws::EC2
53477
53498
  # @option params [Array<Types::Filter>] :filters
53478
53499
  # One or more filters.
53479
53500
  #
53501
+ # * `prefix-list-id` - The ID of the prefix list.
53502
+ #
53480
53503
  # * `route-search.exact-match` - The exact match of the specified
53481
53504
  # filter.
53482
53505
  #
@@ -53545,6 +53568,7 @@ module Aws::EC2
53545
53568
  # resp.routes[0].subnet_id #=> String
53546
53569
  # resp.routes[0].coip_pool_id #=> String
53547
53570
  # resp.routes[0].network_interface_id #=> String
53571
+ # resp.routes[0].destination_prefix_list_id #=> String
53548
53572
  # resp.next_token #=> String
53549
53573
  #
53550
53574
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/SearchLocalGatewayRoutes AWS API Documentation
@@ -55489,7 +55513,7 @@ module Aws::EC2
55489
55513
  params: params,
55490
55514
  config: config)
55491
55515
  context[:gem_name] = 'aws-sdk-ec2'
55492
- context[:gem_version] = '1.361.0'
55516
+ context[:gem_version] = '1.362.0'
55493
55517
  Seahorse::Client::Request.new(handlers, context)
55494
55518
  end
55495
55519
 
@@ -285,6 +285,7 @@ module Aws::EC2
285
285
  CertificateArn = Shapes::StringShape.new(name: 'CertificateArn')
286
286
  CertificateAuthentication = Shapes::StructureShape.new(name: 'CertificateAuthentication')
287
287
  CertificateAuthenticationRequest = Shapes::StructureShape.new(name: 'CertificateAuthenticationRequest')
288
+ CertificateId = Shapes::StringShape.new(name: 'CertificateId')
288
289
  CidrAuthorizationContext = Shapes::StructureShape.new(name: 'CidrAuthorizationContext')
289
290
  CidrBlock = Shapes::StructureShape.new(name: 'CidrBlock')
290
291
  CidrBlockSet = Shapes::ListShape.new(name: 'CidrBlockSet')
@@ -1580,6 +1581,7 @@ module Aws::EC2
1580
1581
  InstanceIdList = Shapes::ListShape.new(name: 'InstanceIdList')
1581
1582
  InstanceIdSet = Shapes::ListShape.new(name: 'InstanceIdSet')
1582
1583
  InstanceIdStringList = Shapes::ListShape.new(name: 'InstanceIdStringList')
1584
+ InstanceIdWithVolumeResolver = Shapes::StringShape.new(name: 'InstanceIdWithVolumeResolver')
1583
1585
  InstanceIdsSet = Shapes::ListShape.new(name: 'InstanceIdsSet')
1584
1586
  InstanceInterruptionBehavior = Shapes::StringShape.new(name: 'InstanceInterruptionBehavior')
1585
1587
  InstanceIpv4Prefix = Shapes::StructureShape.new(name: 'InstanceIpv4Prefix')
@@ -2417,6 +2419,7 @@ module Aws::EC2
2417
2419
  RevokeSecurityGroupEgressResult = Shapes::StructureShape.new(name: 'RevokeSecurityGroupEgressResult')
2418
2420
  RevokeSecurityGroupIngressRequest = Shapes::StructureShape.new(name: 'RevokeSecurityGroupIngressRequest')
2419
2421
  RevokeSecurityGroupIngressResult = Shapes::StructureShape.new(name: 'RevokeSecurityGroupIngressResult')
2422
+ RoleId = Shapes::StringShape.new(name: 'RoleId')
2420
2423
  RootDeviceType = Shapes::StringShape.new(name: 'RootDeviceType')
2421
2424
  RootDeviceTypeList = Shapes::ListShape.new(name: 'RootDeviceTypeList')
2422
2425
  Route = Shapes::StructureShape.new(name: 'Route')
@@ -2650,7 +2653,7 @@ module Aws::EC2
2650
2653
  TrafficMirrorFilterRule = Shapes::StructureShape.new(name: 'TrafficMirrorFilterRule')
2651
2654
  TrafficMirrorFilterRuleField = Shapes::StringShape.new(name: 'TrafficMirrorFilterRuleField')
2652
2655
  TrafficMirrorFilterRuleFieldList = Shapes::ListShape.new(name: 'TrafficMirrorFilterRuleFieldList')
2653
- TrafficMirrorFilterRuleId = Shapes::StringShape.new(name: 'TrafficMirrorFilterRuleId')
2656
+ TrafficMirrorFilterRuleIdWithResolver = Shapes::StringShape.new(name: 'TrafficMirrorFilterRuleIdWithResolver')
2654
2657
  TrafficMirrorFilterRuleList = Shapes::ListShape.new(name: 'TrafficMirrorFilterRuleList')
2655
2658
  TrafficMirrorFilterSet = Shapes::ListShape.new(name: 'TrafficMirrorFilterSet')
2656
2659
  TrafficMirrorNetworkService = Shapes::StringShape.new(name: 'TrafficMirrorNetworkService')
@@ -3340,8 +3343,8 @@ module Aws::EC2
3340
3343
  AssociateDhcpOptionsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
3341
3344
  AssociateDhcpOptionsRequest.struct_class = Types::AssociateDhcpOptionsRequest
3342
3345
 
3343
- AssociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "CertificateArn"))
3344
- AssociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RoleArn"))
3346
+ AssociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
3347
+ AssociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleId, location_name: "RoleArn"))
3345
3348
  AssociateEnclaveCertificateIamRoleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
3346
3349
  AssociateEnclaveCertificateIamRoleRequest.struct_class = Types::AssociateEnclaveCertificateIamRoleRequest
3347
3350
 
@@ -4510,11 +4513,12 @@ module Aws::EC2
4510
4513
  CreateLaunchTemplateVersionResult.add_member(:warning, Shapes::ShapeRef.new(shape: ValidationWarning, location_name: "warning"))
4511
4514
  CreateLaunchTemplateVersionResult.struct_class = Types::CreateLaunchTemplateVersionResult
4512
4515
 
4513
- CreateLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DestinationCidrBlock"))
4516
+ CreateLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
4514
4517
  CreateLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
4515
4518
  CreateLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId, location_name: "LocalGatewayVirtualInterfaceGroupId"))
4516
4519
  CreateLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
4517
4520
  CreateLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
4521
+ CreateLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
4518
4522
  CreateLocalGatewayRouteRequest.struct_class = Types::CreateLocalGatewayRouteRequest
4519
4523
 
4520
4524
  CreateLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
@@ -5401,9 +5405,10 @@ module Aws::EC2
5401
5405
  DeleteLaunchTemplateVersionsResult.add_member(:unsuccessfully_deleted_launch_template_versions, Shapes::ShapeRef.new(shape: DeleteLaunchTemplateVersionsResponseErrorSet, location_name: "unsuccessfullyDeletedLaunchTemplateVersionSet"))
5402
5406
  DeleteLaunchTemplateVersionsResult.struct_class = Types::DeleteLaunchTemplateVersionsResult
5403
5407
 
5404
- DeleteLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DestinationCidrBlock"))
5408
+ DeleteLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
5405
5409
  DeleteLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
5406
5410
  DeleteLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5411
+ DeleteLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
5407
5412
  DeleteLocalGatewayRouteRequest.struct_class = Types::DeleteLocalGatewayRouteRequest
5408
5413
 
5409
5414
  DeleteLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
@@ -5565,7 +5570,7 @@ module Aws::EC2
5565
5570
  DeleteTrafficMirrorFilterResult.add_member(:traffic_mirror_filter_id, Shapes::ShapeRef.new(shape: String, location_name: "trafficMirrorFilterId"))
5566
5571
  DeleteTrafficMirrorFilterResult.struct_class = Types::DeleteTrafficMirrorFilterResult
5567
5572
 
5568
- DeleteTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleId, required: true, location_name: "TrafficMirrorFilterRuleId"))
5573
+ DeleteTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleIdWithResolver, required: true, location_name: "TrafficMirrorFilterRuleId"))
5569
5574
  DeleteTrafficMirrorFilterRuleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5570
5575
  DeleteTrafficMirrorFilterRuleRequest.struct_class = Types::DeleteTrafficMirrorFilterRuleRequest
5571
5576
 
@@ -7604,8 +7609,8 @@ module Aws::EC2
7604
7609
  DisassociateClientVpnTargetNetworkResult.add_member(:status, Shapes::ShapeRef.new(shape: AssociationStatus, location_name: "status"))
7605
7610
  DisassociateClientVpnTargetNetworkResult.struct_class = Types::DisassociateClientVpnTargetNetworkResult
7606
7611
 
7607
- DisassociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "CertificateArn"))
7608
- DisassociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "RoleArn"))
7612
+ DisassociateEnclaveCertificateIamRoleRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
7613
+ DisassociateEnclaveCertificateIamRoleRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleId, location_name: "RoleArn"))
7609
7614
  DisassociateEnclaveCertificateIamRoleRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
7610
7615
  DisassociateEnclaveCertificateIamRoleRequest.struct_class = Types::DisassociateEnclaveCertificateIamRoleRequest
7611
7616
 
@@ -8363,7 +8368,7 @@ module Aws::EC2
8363
8368
  FpgaInfo.add_member(:total_fpga_memory_in_mi_b, Shapes::ShapeRef.new(shape: totalFpgaMemory, location_name: "totalFpgaMemoryInMiB"))
8364
8369
  FpgaInfo.struct_class = Types::FpgaInfo
8365
8370
 
8366
- GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: ResourceArn, location_name: "CertificateArn"))
8371
+ GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateId, location_name: "CertificateArn"))
8367
8372
  GetAssociatedEnclaveCertificateIamRolesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
8368
8373
  GetAssociatedEnclaveCertificateIamRolesRequest.struct_class = Types::GetAssociatedEnclaveCertificateIamRolesRequest
8369
8374
 
@@ -9565,7 +9570,7 @@ module Aws::EC2
9565
9570
  InstanceRequirementsWithMetadataRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9566
9571
  InstanceRequirementsWithMetadataRequest.struct_class = Types::InstanceRequirementsWithMetadataRequest
9567
9572
 
9568
- InstanceSpecification.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
9573
+ InstanceSpecification.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceIdWithVolumeResolver, required: true, location_name: "InstanceId"))
9569
9574
  InstanceSpecification.add_member(:exclude_boot_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "ExcludeBootVolume"))
9570
9575
  InstanceSpecification.add_member(:exclude_data_volume_ids, Shapes::ShapeRef.new(shape: VolumeIdStringList, location_name: "ExcludeDataVolumeId"))
9571
9576
  InstanceSpecification.struct_class = Types::InstanceSpecification
@@ -10380,6 +10385,7 @@ module Aws::EC2
10380
10385
  LocalGatewayRoute.add_member(:subnet_id, Shapes::ShapeRef.new(shape: SubnetId, location_name: "subnetId"))
10381
10386
  LocalGatewayRoute.add_member(:coip_pool_id, Shapes::ShapeRef.new(shape: CoipPoolId, location_name: "coipPoolId"))
10382
10387
  LocalGatewayRoute.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
10388
+ LocalGatewayRoute.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "destinationPrefixListId"))
10383
10389
  LocalGatewayRoute.struct_class = Types::LocalGatewayRoute
10384
10390
 
10385
10391
  LocalGatewayRouteList.member = Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "item")
@@ -10785,11 +10791,12 @@ module Aws::EC2
10785
10791
  ModifyLaunchTemplateResult.add_member(:launch_template, Shapes::ShapeRef.new(shape: LaunchTemplate, location_name: "launchTemplate"))
10786
10792
  ModifyLaunchTemplateResult.struct_class = Types::ModifyLaunchTemplateResult
10787
10793
 
10788
- ModifyLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DestinationCidrBlock"))
10794
+ ModifyLocalGatewayRouteRequest.add_member(:destination_cidr_block, Shapes::ShapeRef.new(shape: String, location_name: "DestinationCidrBlock"))
10789
10795
  ModifyLocalGatewayRouteRequest.add_member(:local_gateway_route_table_id, Shapes::ShapeRef.new(shape: LocalGatewayRoutetableId, required: true, location_name: "LocalGatewayRouteTableId"))
10790
10796
  ModifyLocalGatewayRouteRequest.add_member(:local_gateway_virtual_interface_group_id, Shapes::ShapeRef.new(shape: LocalGatewayVirtualInterfaceGroupId, location_name: "LocalGatewayVirtualInterfaceGroupId"))
10791
10797
  ModifyLocalGatewayRouteRequest.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "NetworkInterfaceId"))
10792
10798
  ModifyLocalGatewayRouteRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
10799
+ ModifyLocalGatewayRouteRequest.add_member(:destination_prefix_list_id, Shapes::ShapeRef.new(shape: PrefixListResourceId, location_name: "DestinationPrefixListId"))
10793
10800
  ModifyLocalGatewayRouteRequest.struct_class = Types::ModifyLocalGatewayRouteRequest
10794
10801
 
10795
10802
  ModifyLocalGatewayRouteResult.add_member(:route, Shapes::ShapeRef.new(shape: LocalGatewayRoute, location_name: "route"))
@@ -10893,7 +10900,7 @@ module Aws::EC2
10893
10900
  ModifyTrafficMirrorFilterNetworkServicesResult.add_member(:traffic_mirror_filter, Shapes::ShapeRef.new(shape: TrafficMirrorFilter, location_name: "trafficMirrorFilter"))
10894
10901
  ModifyTrafficMirrorFilterNetworkServicesResult.struct_class = Types::ModifyTrafficMirrorFilterNetworkServicesResult
10895
10902
 
10896
- ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleId, required: true, location_name: "TrafficMirrorFilterRuleId"))
10903
+ ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_mirror_filter_rule_id, Shapes::ShapeRef.new(shape: TrafficMirrorFilterRuleIdWithResolver, required: true, location_name: "TrafficMirrorFilterRuleId"))
10897
10904
  ModifyTrafficMirrorFilterRuleRequest.add_member(:traffic_direction, Shapes::ShapeRef.new(shape: TrafficDirection, location_name: "TrafficDirection"))
10898
10905
  ModifyTrafficMirrorFilterRuleRequest.add_member(:rule_number, Shapes::ShapeRef.new(shape: Integer, location_name: "RuleNumber"))
10899
10906
  ModifyTrafficMirrorFilterRuleRequest.add_member(:rule_action, Shapes::ShapeRef.new(shape: TrafficMirrorRuleAction, location_name: "RuleAction"))
@@ -8369,6 +8369,12 @@ module Aws::EC2
8369
8369
  # The ID of the network interface.
8370
8370
  # @return [String]
8371
8371
  #
8372
+ # @!attribute [rw] destination_prefix_list_id
8373
+ # The ID of the prefix list. Use a prefix list in place of
8374
+ # `DestinationCidrBlock`. You cannot use `DestinationPrefixListId` and
8375
+ # `DestinationCidrBlock` in the same request.
8376
+ # @return [String]
8377
+ #
8372
8378
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateLocalGatewayRouteRequest AWS API Documentation
8373
8379
  #
8374
8380
  class CreateLocalGatewayRouteRequest < Struct.new(
@@ -8376,7 +8382,8 @@ module Aws::EC2
8376
8382
  :local_gateway_route_table_id,
8377
8383
  :local_gateway_virtual_interface_group_id,
8378
8384
  :dry_run,
8379
- :network_interface_id)
8385
+ :network_interface_id,
8386
+ :destination_prefix_list_id)
8380
8387
  SENSITIVE = []
8381
8388
  include Aws::Structure
8382
8389
  end
@@ -13304,12 +13311,19 @@ module Aws::EC2
13304
13311
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13305
13312
  # @return [Boolean]
13306
13313
  #
13314
+ # @!attribute [rw] destination_prefix_list_id
13315
+ # Use a prefix list in place of `DestinationCidrBlock`. You cannot use
13316
+ # `DestinationPrefixListId` and `DestinationCidrBlock` in the same
13317
+ # request.
13318
+ # @return [String]
13319
+ #
13307
13320
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteLocalGatewayRouteRequest AWS API Documentation
13308
13321
  #
13309
13322
  class DeleteLocalGatewayRouteRequest < Struct.new(
13310
13323
  :destination_cidr_block,
13311
13324
  :local_gateway_route_table_id,
13312
- :dry_run)
13325
+ :dry_run,
13326
+ :destination_prefix_list_id)
13313
13327
  SENSITIVE = []
13314
13328
  include Aws::Structure
13315
13329
  end
@@ -42072,6 +42086,10 @@ module Aws::EC2
42072
42086
  # The ID of the network interface.
42073
42087
  # @return [String]
42074
42088
  #
42089
+ # @!attribute [rw] destination_prefix_list_id
42090
+ # The ID of the prefix list.
42091
+ # @return [String]
42092
+ #
42075
42093
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LocalGatewayRoute AWS API Documentation
42076
42094
  #
42077
42095
  class LocalGatewayRoute < Struct.new(
@@ -42084,7 +42102,8 @@ module Aws::EC2
42084
42102
  :owner_id,
42085
42103
  :subnet_id,
42086
42104
  :coip_pool_id,
42087
- :network_interface_id)
42105
+ :network_interface_id,
42106
+ :destination_prefix_list_id)
42088
42107
  SENSITIVE = []
42089
42108
  include Aws::Structure
42090
42109
  end
@@ -44321,6 +44340,12 @@ module Aws::EC2
44321
44340
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
44322
44341
  # @return [Boolean]
44323
44342
  #
44343
+ # @!attribute [rw] destination_prefix_list_id
44344
+ # The ID of the prefix list. Use a prefix list in place of
44345
+ # `DestinationCidrBlock`. You cannot use `DestinationPrefixListId` and
44346
+ # `DestinationCidrBlock` in the same request.
44347
+ # @return [String]
44348
+ #
44324
44349
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyLocalGatewayRouteRequest AWS API Documentation
44325
44350
  #
44326
44351
  class ModifyLocalGatewayRouteRequest < Struct.new(
@@ -44328,7 +44353,8 @@ module Aws::EC2
44328
44353
  :local_gateway_route_table_id,
44329
44354
  :local_gateway_virtual_interface_group_id,
44330
44355
  :network_interface_id,
44331
- :dry_run)
44356
+ :dry_run,
44357
+ :destination_prefix_list_id)
44332
44358
  SENSITIVE = []
44333
44359
  include Aws::Structure
44334
44360
  end
@@ -54936,6 +54962,8 @@ module Aws::EC2
54936
54962
  # @!attribute [rw] filters
54937
54963
  # One or more filters.
54938
54964
  #
54965
+ # * `prefix-list-id` - The ID of the prefix list.
54966
+ #
54939
54967
  # * `route-search.exact-match` - The exact match of the specified
54940
54968
  # filter.
54941
54969
  #
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.361.0'
79
+ GEM_VERSION = '1.362.0'
80
80
 
81
81
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.361.0
4
+ version: 1.362.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-25 00:00:00.000000000 Z
11
+ date: 2023-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4