aws-sdk-vpclattice 1.6.0 → 1.8.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: ef028b9f9ce027151bfc56160756409fa5f8e1209148678eed9c628f44b41da3
4
- data.tar.gz: 73d3269d2d0b3ae83fefb4b56a5c175c4fc691b7f477f3da80c8c6620ed6718b
3
+ metadata.gz: 58c0f2a292181ce1748ce367ef5c07979013d7c86950755e03a254331194a5ad
4
+ data.tar.gz: '0949e942ed06a9791fc709d758b5805ffe0465e0900e7087084c53815e63b415'
5
5
  SHA512:
6
- metadata.gz: c6c0a23df031a325ad3769e429af6505e711a7e0860b91b38cf7e14d6ac2bab80c29556a8c729b8ab31ffa8da62e3ecde7b330e7ede32ce491555e14c2ad0570
7
- data.tar.gz: d4f7026b054ebbe80872ce3c99ba6beacb71bec39e2ea6b892dab01e58b80cfd9c9ff50d0f1dfcca7bd34aa1ba7832c681ad185ebc540043d0334e13dfedf019
6
+ metadata.gz: 36140ca77bab5818103584eb1a7045cd4aad7b8784050413fd807e34f42c5aac13f7f12a4a7970031e8a0cb64bc0997bbebf964889d8ecf0c41aa4d920064713
7
+ data.tar.gz: bb4ee63cae11e19c44b311fa933c651763a73ab791a2b1d2b9ddd33dadd35a0b02695acf701aa5a8be2eec851cfb8e5c3c83e24f9f08c72b0896f12bc5f21063
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.8.0 (2023-09-27)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.7.0 (2023-09-05)
10
+ ------------------
11
+
12
+ * Feature - This release adds Lambda event structure version config support for LAMBDA target groups. It also adds newline support for auth policies.
13
+
4
14
  1.6.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.8.0
@@ -1053,11 +1053,10 @@ module Aws::VPCLattice
1053
1053
  # As a result of this operation, the association gets created in the
1054
1054
  # service network account and the VPC owner account.
1055
1055
  #
1056
- # If you add a security group to the service network and VPC
1057
- # association, the association must continue to always have at least one
1058
- # security group. You can add or edit security groups at any time.
1059
- # However, to remove all security groups, you must first delete the
1060
- # association and recreate it without security groups.
1056
+ # Once a security group is added to the VPC association it cannot be
1057
+ # removed. You can add or update the security groups being used for the
1058
+ # VPC association once a security group is attached. To remove all
1059
+ # security groups you must reassociate the VPC.
1061
1060
  #
1062
1061
  #
1063
1062
  #
@@ -1199,10 +1198,11 @@ module Aws::VPCLattice
1199
1198
  # unhealthy_threshold_count: 1,
1200
1199
  # },
1201
1200
  # ip_address_type: "IPV4", # accepts IPV4, IPV6
1202
- # port: 1, # required
1203
- # protocol: "HTTP", # required, accepts HTTP, HTTPS
1201
+ # lambda_event_structure_version: "V1", # accepts V1, V2
1202
+ # port: 1,
1203
+ # protocol: "HTTP", # accepts HTTP, HTTPS
1204
1204
  # protocol_version: "HTTP1", # accepts HTTP1, HTTP2, GRPC
1205
- # vpc_identifier: "VpcId", # required
1205
+ # vpc_identifier: "VpcId",
1206
1206
  # },
1207
1207
  # name: "TargetGroupName", # required
1208
1208
  # tags: {
@@ -1225,6 +1225,7 @@ module Aws::VPCLattice
1225
1225
  # resp.config.health_check.protocol_version #=> String, one of "HTTP1", "HTTP2"
1226
1226
  # resp.config.health_check.unhealthy_threshold_count #=> Integer
1227
1227
  # resp.config.ip_address_type #=> String, one of "IPV4", "IPV6"
1228
+ # resp.config.lambda_event_structure_version #=> String, one of "V1", "V2"
1228
1229
  # resp.config.port #=> Integer
1229
1230
  # resp.config.protocol #=> String, one of "HTTP", "HTTPS"
1230
1231
  # resp.config.protocol_version #=> String, one of "HTTP1", "HTTP2", "GRPC"
@@ -1265,11 +1266,12 @@ module Aws::VPCLattice
1265
1266
  req.send_request(options)
1266
1267
  end
1267
1268
 
1268
- # Deletes the specified auth policy. If an auth is set to `AWS_IAM` and
1269
- # the auth policy is deleted, all requests will be denied by default. If
1270
- # you are trying to remove the auth policy completely, you must set the
1271
- # auth\_type to `NONE`. If auth is enabled on the resource, but no auth
1272
- # policy is set, all requests will be denied.
1269
+ # Deletes the specified auth policy. If an auth is set to `Amazon Web
1270
+ # Services_IAM` and the auth policy is deleted, all requests will be
1271
+ # denied by default. If you are trying to remove the auth policy
1272
+ # completely, you must set the auth\_type to `NONE`. If auth is enabled
1273
+ # on the resource, but no auth policy is set, all requests will be
1274
+ # denied.
1273
1275
  #
1274
1276
  # @option params [required, String] :resource_identifier
1275
1277
  # The ID or Amazon Resource Name (ARN) of the resource.
@@ -1731,11 +1733,11 @@ module Aws::VPCLattice
1731
1733
  end
1732
1734
 
1733
1735
  # Retrieves information about the resource policy. The resource policy
1734
- # is an IAM policy created on behalf of the resource owner when they
1735
- # share a resource.
1736
+ # is an IAM policy created by AWS RAM on behalf of the resource owner
1737
+ # when they share a resource.
1736
1738
  #
1737
1739
  # @option params [required, String] :resource_arn
1738
- # The Amazon Resource Name (ARN) of the service network or service.
1740
+ # An IAM policy.
1739
1741
  #
1740
1742
  # @return [Types::GetResourcePolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1741
1743
  #
@@ -2074,6 +2076,7 @@ module Aws::VPCLattice
2074
2076
  # resp.config.health_check.protocol_version #=> String, one of "HTTP1", "HTTP2"
2075
2077
  # resp.config.health_check.unhealthy_threshold_count #=> Integer
2076
2078
  # resp.config.ip_address_type #=> String, one of "IPV4", "IPV6"
2079
+ # resp.config.lambda_event_structure_version #=> String, one of "V1", "V2"
2077
2080
  # resp.config.port #=> Integer
2078
2081
  # resp.config.protocol #=> String, one of "HTTP", "HTTPS"
2079
2082
  # resp.config.protocol_version #=> String, one of "HTTP1", "HTTP2", "GRPC"
@@ -2527,6 +2530,7 @@ module Aws::VPCLattice
2527
2530
  # resp.items[0].created_at #=> Time
2528
2531
  # resp.items[0].id #=> String
2529
2532
  # resp.items[0].ip_address_type #=> String, one of "IPV4", "IPV6"
2533
+ # resp.items[0].lambda_event_structure_version #=> String, one of "V1", "V2"
2530
2534
  # resp.items[0].last_updated_at #=> Time
2531
2535
  # resp.items[0].name #=> String
2532
2536
  # resp.items[0].port #=> Integer
@@ -2602,12 +2606,10 @@ module Aws::VPCLattice
2602
2606
  req.send_request(options)
2603
2607
  end
2604
2608
 
2605
- # Creates or updates the auth policy. The policy string in JSON must not
2606
- # contain newlines or blank lines.
2609
+ # Creates or updates the auth policy.
2607
2610
  #
2608
2611
  # @option params [required, String] :policy
2609
- # The auth policy. The policy string in JSON must not contain newlines
2610
- # or blank lines.
2612
+ # The auth policy.
2611
2613
  #
2612
2614
  # @option params [required, String] :resource_identifier
2613
2615
  # The ID or Amazon Resource Name (ARN) of the service network or service
@@ -2645,8 +2647,7 @@ module Aws::VPCLattice
2645
2647
  # permission for sharing services and service networks.
2646
2648
  #
2647
2649
  # @option params [required, String] :policy
2648
- # An IAM policy. The policy string in JSON must not contain newlines or
2649
- # blank lines.
2650
+ # An IAM policy.
2650
2651
  #
2651
2652
  # @option params [required, String] :resource_arn
2652
2653
  # The ID or Amazon Resource Name (ARN) of the service network or service
@@ -3079,15 +3080,12 @@ module Aws::VPCLattice
3079
3080
  req.send_request(options)
3080
3081
  end
3081
3082
 
3082
- # Updates the service network and VPC association. If you add a security
3083
- # group to the service network and VPC association, the association must
3084
- # continue to always have at least one security group. You can add or
3085
- # edit security groups at any time. However, to remove all security
3086
- # groups, you must first delete the association and recreate it without
3087
- # security groups.
3083
+ # Updates the service network and VPC association. Once you add a
3084
+ # security group, it cannot be removed.
3088
3085
  #
3089
3086
  # @option params [required, Array<String>] :security_group_ids
3090
- # The IDs of the security groups.
3087
+ # The IDs of the security groups. Once you add a security group, it
3088
+ # cannot be removed.
3091
3089
  #
3092
3090
  # @option params [required, String] :service_network_vpc_association_identifier
3093
3091
  # The ID or Amazon Resource Name (ARN) of the association.
@@ -3176,6 +3174,7 @@ module Aws::VPCLattice
3176
3174
  # resp.config.health_check.protocol_version #=> String, one of "HTTP1", "HTTP2"
3177
3175
  # resp.config.health_check.unhealthy_threshold_count #=> Integer
3178
3176
  # resp.config.ip_address_type #=> String, one of "IPV4", "IPV6"
3177
+ # resp.config.lambda_event_structure_version #=> String, one of "V1", "V2"
3179
3178
  # resp.config.port #=> Integer
3180
3179
  # resp.config.protocol #=> String, one of "HTTP", "HTTPS"
3181
3180
  # resp.config.protocol_version #=> String, one of "HTTP1", "HTTP2", "GRPC"
@@ -3207,7 +3206,7 @@ module Aws::VPCLattice
3207
3206
  params: params,
3208
3207
  config: config)
3209
3208
  context[:gem_name] = 'aws-sdk-vpclattice'
3210
- context[:gem_version] = '1.6.0'
3209
+ context[:gem_version] = '1.8.0'
3211
3210
  Seahorse::Client::Request.new(handlers, context)
3212
3211
  end
3213
3212
 
@@ -117,6 +117,7 @@ module Aws::VPCLattice
117
117
  Integer = Shapes::IntegerShape.new(name: 'Integer')
118
118
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
119
119
  IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
120
+ LambdaEventStructureVersion = Shapes::StringShape.new(name: 'LambdaEventStructureVersion')
120
121
  ListAccessLogSubscriptionsRequest = Shapes::StructureShape.new(name: 'ListAccessLogSubscriptionsRequest')
121
122
  ListAccessLogSubscriptionsResponse = Shapes::StructureShape.new(name: 'ListAccessLogSubscriptionsResponse')
122
123
  ListListenersRequest = Shapes::StructureShape.new(name: 'ListListenersRequest')
@@ -976,10 +977,11 @@ module Aws::VPCLattice
976
977
 
977
978
  TargetGroupConfig.add_member(:health_check, Shapes::ShapeRef.new(shape: HealthCheckConfig, location_name: "healthCheck"))
978
979
  TargetGroupConfig.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
979
- TargetGroupConfig.add_member(:port, Shapes::ShapeRef.new(shape: Port, required: true, location_name: "port"))
980
- TargetGroupConfig.add_member(:protocol, Shapes::ShapeRef.new(shape: TargetGroupProtocol, required: true, location_name: "protocol"))
980
+ TargetGroupConfig.add_member(:lambda_event_structure_version, Shapes::ShapeRef.new(shape: LambdaEventStructureVersion, location_name: "lambdaEventStructureVersion"))
981
+ TargetGroupConfig.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
982
+ TargetGroupConfig.add_member(:protocol, Shapes::ShapeRef.new(shape: TargetGroupProtocol, location_name: "protocol"))
981
983
  TargetGroupConfig.add_member(:protocol_version, Shapes::ShapeRef.new(shape: TargetGroupProtocolVersion, location_name: "protocolVersion"))
982
- TargetGroupConfig.add_member(:vpc_identifier, Shapes::ShapeRef.new(shape: VpcId, required: true, location_name: "vpcIdentifier"))
984
+ TargetGroupConfig.add_member(:vpc_identifier, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcIdentifier"))
983
985
  TargetGroupConfig.struct_class = Types::TargetGroupConfig
984
986
 
985
987
  TargetGroupList.member = Shapes::ShapeRef.new(shape: TargetGroupSummary)
@@ -988,6 +990,7 @@ module Aws::VPCLattice
988
990
  TargetGroupSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
989
991
  TargetGroupSummary.add_member(:id, Shapes::ShapeRef.new(shape: TargetGroupId, location_name: "id"))
990
992
  TargetGroupSummary.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
993
+ TargetGroupSummary.add_member(:lambda_event_structure_version, Shapes::ShapeRef.new(shape: LambdaEventStructureVersion, location_name: "lambdaEventStructureVersion"))
991
994
  TargetGroupSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "lastUpdatedAt"))
992
995
  TargetGroupSummary.add_member(:name, Shapes::ShapeRef.new(shape: TargetGroupName, location_name: "name"))
993
996
  TargetGroupSummary.add_member(:port, Shapes::ShapeRef.new(shape: Port, location_name: "port"))
@@ -1241,6 +1244,7 @@ module Aws::VPCLattice
1241
1244
  o.input = Shapes::ShapeRef.new(shape: CreateServiceNetworkServiceAssociationRequest)
1242
1245
  o.output = Shapes::ShapeRef.new(shape: CreateServiceNetworkServiceAssociationResponse)
1243
1246
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1247
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1244
1248
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1245
1249
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1246
1250
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
@@ -1552,6 +1556,7 @@ module Aws::VPCLattice
1552
1556
  o.input = Shapes::ShapeRef.new(shape: GetTargetGroupRequest)
1553
1557
  o.output = Shapes::ShapeRef.new(shape: GetTargetGroupResponse)
1554
1558
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1559
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1555
1560
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1556
1561
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1557
1562
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
@@ -1564,6 +1569,7 @@ module Aws::VPCLattice
1564
1569
  o.input = Shapes::ShapeRef.new(shape: ListAccessLogSubscriptionsRequest)
1565
1570
  o.output = Shapes::ShapeRef.new(shape: ListAccessLogSubscriptionsResponse)
1566
1571
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1572
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1567
1573
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1568
1574
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1569
1575
  o[:pager] = Aws::Pager.new(
@@ -1691,6 +1697,7 @@ module Aws::VPCLattice
1691
1697
  o.input = Shapes::ShapeRef.new(shape: ListTagsForResourceRequest)
1692
1698
  o.output = Shapes::ShapeRef.new(shape: ListTagsForResourceResponse)
1693
1699
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1700
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1694
1701
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1695
1702
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1696
1703
  end)
@@ -1793,6 +1800,7 @@ module Aws::VPCLattice
1793
1800
  o.input = Shapes::ShapeRef.new(shape: UntagResourceRequest)
1794
1801
  o.output = Shapes::ShapeRef.new(shape: UntagResourceResponse)
1795
1802
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1803
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1796
1804
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1797
1805
  o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
1798
1806
  end)
@@ -1888,6 +1896,7 @@ module Aws::VPCLattice
1888
1896
  o.input = Shapes::ShapeRef.new(shape: UpdateTargetGroupRequest)
1889
1897
  o.output = Shapes::ShapeRef.new(shape: UpdateTargetGroupResponse)
1890
1898
  o.errors << Shapes::ShapeRef.new(shape: ValidationException)
1899
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
1891
1900
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
1892
1901
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1893
1902
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
@@ -1253,12 +1253,12 @@ module Aws::VPCLattice
1253
1253
  #
1254
1254
  # @!attribute [rw] state
1255
1255
  # The state of the auth policy. The auth policy is only active when
1256
- # the auth type is set to `AWS_IAM`. If you provide a policy, then
1257
- # authentication and authorization decisions are made based on this
1258
- # policy and the client's IAM policy. If the auth type is `NONE`,
1259
- # then any auth policy you provide will remain inactive. For more
1260
- # information, see [Create a service network][1] in the *Amazon VPC
1261
- # Lattice User Guide*.
1256
+ # the auth type is set to `Amazon Web Services_IAM`. If you provide a
1257
+ # policy, then authentication and authorization decisions are made
1258
+ # based on this policy and the client's IAM policy. If the auth type
1259
+ # is `NONE`, then any auth policy you provide will remain inactive.
1260
+ # For more information, see [Create a service network][1] in the
1261
+ # *Amazon VPC Lattice User Guide*.
1262
1262
  #
1263
1263
  #
1264
1264
  #
@@ -1353,7 +1353,7 @@ module Aws::VPCLattice
1353
1353
  end
1354
1354
 
1355
1355
  # @!attribute [rw] resource_arn
1356
- # The Amazon Resource Name (ARN) of the service network or service.
1356
+ # An IAM policy.
1357
1357
  # @return [String]
1358
1358
  #
1359
1359
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourcePolicyRequest AWS API Documentation
@@ -1365,7 +1365,7 @@ module Aws::VPCLattice
1365
1365
  end
1366
1366
 
1367
1367
  # @!attribute [rw] policy
1368
- # An IAM policy.
1368
+ # The Amazon Resource Name (ARN) of the service network or service.
1369
1369
  # @return [String]
1370
1370
  #
1371
1371
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/GetResourcePolicyResponse AWS API Documentation
@@ -2550,8 +2550,7 @@ module Aws::VPCLattice
2550
2550
  end
2551
2551
 
2552
2552
  # @!attribute [rw] policy
2553
- # The auth policy. The policy string in JSON must not contain newlines
2554
- # or blank lines.
2553
+ # The auth policy.
2555
2554
  # @return [String]
2556
2555
  #
2557
2556
  # @!attribute [rw] resource_identifier
@@ -2569,18 +2568,17 @@ module Aws::VPCLattice
2569
2568
  end
2570
2569
 
2571
2570
  # @!attribute [rw] policy
2572
- # The auth policy. The policy string in JSON must not contain newlines
2573
- # or blank lines.
2571
+ # The auth policy.
2574
2572
  # @return [String]
2575
2573
  #
2576
2574
  # @!attribute [rw] state
2577
2575
  # The state of the auth policy. The auth policy is only active when
2578
- # the auth type is set to `AWS_IAM`. If you provide a policy, then
2579
- # authentication and authorization decisions are made based on this
2580
- # policy and the client's IAM policy. If the Auth type is `NONE`,
2581
- # then, any auth policy you provide will remain inactive. For more
2582
- # information, see [Create a service network][1] in the *Amazon VPC
2583
- # Lattice User Guide*.
2576
+ # the auth type is set to `Amazon Web Services_IAM`. If you provide a
2577
+ # policy, then authentication and authorization decisions are made
2578
+ # based on this policy and the client's IAM policy. If the Auth type
2579
+ # is `NONE`, then, any auth policy you provide will remain inactive.
2580
+ # For more information, see [Create a service network][1] in the
2581
+ # *Amazon VPC Lattice User Guide*.
2584
2582
  #
2585
2583
  #
2586
2584
  #
@@ -2597,8 +2595,7 @@ module Aws::VPCLattice
2597
2595
  end
2598
2596
 
2599
2597
  # @!attribute [rw] policy
2600
- # An IAM policy. The policy string in JSON must not contain newlines
2601
- # or blank lines.
2598
+ # An IAM policy.
2602
2599
  # @return [String]
2603
2600
  #
2604
2601
  # @!attribute [rw] resource_arn
@@ -3237,6 +3234,10 @@ module Aws::VPCLattice
3237
3234
  # specified, the IP address type defaults to `ipv4`.
3238
3235
  # @return [String]
3239
3236
  #
3237
+ # @!attribute [rw] lambda_event_structure_version
3238
+ # Lambda event structure version
3239
+ # @return [String]
3240
+ #
3240
3241
  # @!attribute [rw] port
3241
3242
  # The port on which the targets are listening. For HTTP, the default
3242
3243
  # is `80`. For HTTPS, the default is `443`
@@ -3260,6 +3261,7 @@ module Aws::VPCLattice
3260
3261
  class TargetGroupConfig < Struct.new(
3261
3262
  :health_check,
3262
3263
  :ip_address_type,
3264
+ :lambda_event_structure_version,
3263
3265
  :port,
3264
3266
  :protocol,
3265
3267
  :protocol_version,
@@ -3289,6 +3291,10 @@ module Aws::VPCLattice
3289
3291
  # specified, the IP address type defaults to `ipv4`.
3290
3292
  # @return [String]
3291
3293
  #
3294
+ # @!attribute [rw] lambda_event_structure_version
3295
+ # Lambda event structure version
3296
+ # @return [String]
3297
+ #
3292
3298
  # @!attribute [rw] last_updated_at
3293
3299
  # The date and time that the target group was last updated, specified
3294
3300
  # in ISO-8601 format.
@@ -3329,6 +3335,7 @@ module Aws::VPCLattice
3329
3335
  :created_at,
3330
3336
  :id,
3331
3337
  :ip_address_type,
3338
+ :lambda_event_structure_version,
3332
3339
  :last_updated_at,
3333
3340
  :name,
3334
3341
  :port,
@@ -3687,7 +3694,8 @@ module Aws::VPCLattice
3687
3694
  end
3688
3695
 
3689
3696
  # @!attribute [rw] security_group_ids
3690
- # The IDs of the security groups.
3697
+ # The IDs of the security groups. Once you add a security group, it
3698
+ # cannot be removed.
3691
3699
  # @return [Array<String>]
3692
3700
  #
3693
3701
  # @!attribute [rw] service_network_vpc_association_identifier
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-vpclattice/customizations'
52
52
  # @!group service
53
53
  module Aws::VPCLattice
54
54
 
55
- GEM_VERSION = '1.6.0'
55
+ GEM_VERSION = '1.8.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-vpclattice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.0
4
+ version: 1.8.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.177.0
22
+ version: 3.184.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.177.0
32
+ version: 3.184.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement