aws-sdk-vpclattice 1.50.0 → 1.51.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c0ba4e47271c78cb13974a1749a99360e2e8e8b216a761f5f3472ea5875f220f
4
- data.tar.gz: dc019ae4c75154255b44e09de8740792f208ae7cc2bff6c93f921f032bd9ccfe
3
+ metadata.gz: ad7f766332b89cdc8e4adb4b62c7ca6f38bc778d70568130f2e232102aa38f8a
4
+ data.tar.gz: b38808d9cc49753ebdb6ad00e9ed97e8950078b2d9cc79fcbe6c42ff04a1f242
5
5
  SHA512:
6
- metadata.gz: 786adcb9352f6572cf927b67996b55f1f228fdf1714785a40981b4e0fc0b7ff32dcd6d93d4bfc951bde88aadbcc1d17da269dbf94c4acc6b6822384dc9766b2c
7
- data.tar.gz: 8080ae61b4d1df7bd6a0206894dc08c520800508ecf819c5fb8e7ab0f8a165bbde5079c308f51af89953230705b256a1c94c73222342c2ede1d9a498ce2f7b75
6
+ metadata.gz: 2efd82b28090f7a5c3b245ceb70b5a66bad676bf120522b794e4e6b23d933862bf04f4d0a413ee877695118f7185f5bd18ef52c453e1064bf3ca14ee2f590e12
7
+ data.tar.gz: 0413efae9e99641c79c9d593c7d9053b9e4fa3ca23401cf8a29f5af860e067bb16fa12f4a31e258431e3ef424fc0fae0552e2de58c1562c40119470a5859d744
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2026-06-29)
5
+ ------------------
6
+
7
+ * Feature - Amazon VPC Lattice now supports mutable idle timeout configuration on VPC Lattice Services
8
+
4
9
  1.50.0 (2026-06-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.51.0
@@ -1243,6 +1243,13 @@ module Aws::VPCLattice
1243
1243
  # * `AWS_IAM`: The resource uses an IAM policy. When this type is used,
1244
1244
  # auth is enabled and an auth policy is required.
1245
1245
  #
1246
+ # @option params [Integer] :idle_timeout_seconds
1247
+ # The amount of time, in seconds, that a connection can remain idle (no
1248
+ # data sent) before VPC Lattice closes it. The valid range is 60 to 600
1249
+ # seconds. If you don't specify a value, the default is 60 seconds.
1250
+ # This setting does not change the maximum connection duration of 10
1251
+ # minutes; connections are still closed when they reach that limit.
1252
+ #
1246
1253
  # @return [Types::CreateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1247
1254
  #
1248
1255
  # * {Types::CreateServiceResponse#id #id} => String
@@ -1252,6 +1259,7 @@ module Aws::VPCLattice
1252
1259
  # * {Types::CreateServiceResponse#certificate_arn #certificate_arn} => String
1253
1260
  # * {Types::CreateServiceResponse#status #status} => String
1254
1261
  # * {Types::CreateServiceResponse#auth_type #auth_type} => String
1262
+ # * {Types::CreateServiceResponse#idle_timeout_seconds #idle_timeout_seconds} => Integer
1255
1263
  # * {Types::CreateServiceResponse#dns_entry #dns_entry} => Types::DnsEntry
1256
1264
  #
1257
1265
  # @example Request syntax with placeholder values
@@ -1265,6 +1273,7 @@ module Aws::VPCLattice
1265
1273
  # custom_domain_name: "ServiceCustomDomainName",
1266
1274
  # certificate_arn: "CertificateArn",
1267
1275
  # auth_type: "NONE", # accepts NONE, AWS_IAM
1276
+ # idle_timeout_seconds: 1,
1268
1277
  # })
1269
1278
  #
1270
1279
  # @example Response structure
@@ -1276,6 +1285,7 @@ module Aws::VPCLattice
1276
1285
  # resp.certificate_arn #=> String
1277
1286
  # resp.status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "CREATE_FAILED", "DELETE_FAILED"
1278
1287
  # resp.auth_type #=> String, one of "NONE", "AWS_IAM"
1288
+ # resp.idle_timeout_seconds #=> Integer
1279
1289
  # resp.dns_entry.domain_name #=> String
1280
1290
  # resp.dns_entry.hosted_zone_id #=> String
1281
1291
  #
@@ -2658,6 +2668,7 @@ module Aws::VPCLattice
2658
2668
  # * {Types::GetServiceResponse#certificate_arn #certificate_arn} => String
2659
2669
  # * {Types::GetServiceResponse#status #status} => String
2660
2670
  # * {Types::GetServiceResponse#auth_type #auth_type} => String
2671
+ # * {Types::GetServiceResponse#idle_timeout_seconds #idle_timeout_seconds} => Integer
2661
2672
  # * {Types::GetServiceResponse#failure_code #failure_code} => String
2662
2673
  # * {Types::GetServiceResponse#failure_message #failure_message} => String
2663
2674
  #
@@ -2680,6 +2691,7 @@ module Aws::VPCLattice
2680
2691
  # resp.certificate_arn #=> String
2681
2692
  # resp.status #=> String, one of "ACTIVE", "CREATE_IN_PROGRESS", "DELETE_IN_PROGRESS", "CREATE_FAILED", "DELETE_FAILED"
2682
2693
  # resp.auth_type #=> String, one of "NONE", "AWS_IAM"
2694
+ # resp.idle_timeout_seconds #=> Integer
2683
2695
  # resp.failure_code #=> String
2684
2696
  # resp.failure_message #=> String
2685
2697
  #
@@ -4428,6 +4440,13 @@ module Aws::VPCLattice
4428
4440
  # * `AWS_IAM`: The resource uses an IAM policy. When this type is used,
4429
4441
  # auth is enabled and an auth policy is required.
4430
4442
  #
4443
+ # @option params [Integer] :idle_timeout_seconds
4444
+ # The amount of time, in seconds, that a connection can remain idle (no
4445
+ # data sent) before VPC Lattice closes it. The valid range is 60 to 600
4446
+ # seconds. If you don't specify a value, the default is 60 seconds.
4447
+ # This setting does not change the maximum connection duration of 10
4448
+ # minutes; connections are still closed when they reach that limit.
4449
+ #
4431
4450
  # @return [Types::UpdateServiceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4432
4451
  #
4433
4452
  # * {Types::UpdateServiceResponse#id #id} => String
@@ -4436,6 +4455,7 @@ module Aws::VPCLattice
4436
4455
  # * {Types::UpdateServiceResponse#custom_domain_name #custom_domain_name} => String
4437
4456
  # * {Types::UpdateServiceResponse#certificate_arn #certificate_arn} => String
4438
4457
  # * {Types::UpdateServiceResponse#auth_type #auth_type} => String
4458
+ # * {Types::UpdateServiceResponse#idle_timeout_seconds #idle_timeout_seconds} => Integer
4439
4459
  #
4440
4460
  # @example Request syntax with placeholder values
4441
4461
  #
@@ -4443,6 +4463,7 @@ module Aws::VPCLattice
4443
4463
  # service_identifier: "ServiceIdentifier", # required
4444
4464
  # certificate_arn: "CertificateArn",
4445
4465
  # auth_type: "NONE", # accepts NONE, AWS_IAM
4466
+ # idle_timeout_seconds: 1,
4446
4467
  # })
4447
4468
  #
4448
4469
  # @example Response structure
@@ -4453,6 +4474,7 @@ module Aws::VPCLattice
4453
4474
  # resp.custom_domain_name #=> String
4454
4475
  # resp.certificate_arn #=> String
4455
4476
  # resp.auth_type #=> String, one of "NONE", "AWS_IAM"
4477
+ # resp.idle_timeout_seconds #=> Integer
4456
4478
  #
4457
4479
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateService AWS API Documentation
4458
4480
  #
@@ -4641,7 +4663,7 @@ module Aws::VPCLattice
4641
4663
  tracer: tracer
4642
4664
  )
4643
4665
  context[:gem_name] = 'aws-sdk-vpclattice'
4644
- context[:gem_version] = '1.50.0'
4666
+ context[:gem_version] = '1.51.0'
4645
4667
  Seahorse::Client::Request.new(handlers, context)
4646
4668
  end
4647
4669
 
@@ -149,6 +149,7 @@ module Aws::VPCLattice
149
149
  HttpMatch = Shapes::StructureShape.new(name: 'HttpMatch')
150
150
  HttpMethod = Shapes::StringShape.new(name: 'HttpMethod')
151
151
  HttpStatusCode = Shapes::IntegerShape.new(name: 'HttpStatusCode')
152
+ IdleTimeoutSeconds = Shapes::IntegerShape.new(name: 'IdleTimeoutSeconds')
152
153
  Integer = Shapes::IntegerShape.new(name: 'Integer')
153
154
  InternalServerException = Shapes::StructureShape.new(name: 'InternalServerException')
154
155
  IpAddress = Shapes::StringShape.new(name: 'IpAddress')
@@ -584,6 +585,7 @@ module Aws::VPCLattice
584
585
  CreateServiceRequest.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: ServiceCustomDomainName, location_name: "customDomainName"))
585
586
  CreateServiceRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
586
587
  CreateServiceRequest.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "authType"))
588
+ CreateServiceRequest.add_member(:idle_timeout_seconds, Shapes::ShapeRef.new(shape: IdleTimeoutSeconds, location_name: "idleTimeoutSeconds"))
587
589
  CreateServiceRequest.struct_class = Types::CreateServiceRequest
588
590
 
589
591
  CreateServiceResponse.add_member(:id, Shapes::ShapeRef.new(shape: ServiceId, location_name: "id"))
@@ -593,6 +595,7 @@ module Aws::VPCLattice
593
595
  CreateServiceResponse.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
594
596
  CreateServiceResponse.add_member(:status, Shapes::ShapeRef.new(shape: ServiceStatus, location_name: "status"))
595
597
  CreateServiceResponse.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "authType"))
598
+ CreateServiceResponse.add_member(:idle_timeout_seconds, Shapes::ShapeRef.new(shape: IdleTimeoutSeconds, location_name: "idleTimeoutSeconds"))
596
599
  CreateServiceResponse.add_member(:dns_entry, Shapes::ShapeRef.new(shape: DnsEntry, location_name: "dnsEntry"))
597
600
  CreateServiceResponse.struct_class = Types::CreateServiceResponse
598
601
 
@@ -962,6 +965,7 @@ module Aws::VPCLattice
962
965
  GetServiceResponse.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
963
966
  GetServiceResponse.add_member(:status, Shapes::ShapeRef.new(shape: ServiceStatus, location_name: "status"))
964
967
  GetServiceResponse.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "authType"))
968
+ GetServiceResponse.add_member(:idle_timeout_seconds, Shapes::ShapeRef.new(shape: IdleTimeoutSeconds, location_name: "idleTimeoutSeconds"))
965
969
  GetServiceResponse.add_member(:failure_code, Shapes::ShapeRef.new(shape: FailureCode, location_name: "failureCode"))
966
970
  GetServiceResponse.add_member(:failure_message, Shapes::ShapeRef.new(shape: FailureMessage, location_name: "failureMessage"))
967
971
  GetServiceResponse.struct_class = Types::GetServiceResponse
@@ -1638,6 +1642,7 @@ module Aws::VPCLattice
1638
1642
  UpdateServiceRequest.add_member(:service_identifier, Shapes::ShapeRef.new(shape: ServiceIdentifier, required: true, location: "uri", location_name: "serviceIdentifier"))
1639
1643
  UpdateServiceRequest.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
1640
1644
  UpdateServiceRequest.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "authType"))
1645
+ UpdateServiceRequest.add_member(:idle_timeout_seconds, Shapes::ShapeRef.new(shape: IdleTimeoutSeconds, location_name: "idleTimeoutSeconds"))
1641
1646
  UpdateServiceRequest.struct_class = Types::UpdateServiceRequest
1642
1647
 
1643
1648
  UpdateServiceResponse.add_member(:id, Shapes::ShapeRef.new(shape: ServiceId, location_name: "id"))
@@ -1646,6 +1651,7 @@ module Aws::VPCLattice
1646
1651
  UpdateServiceResponse.add_member(:custom_domain_name, Shapes::ShapeRef.new(shape: ServiceCustomDomainName, location_name: "customDomainName"))
1647
1652
  UpdateServiceResponse.add_member(:certificate_arn, Shapes::ShapeRef.new(shape: CertificateArn, location_name: "certificateArn"))
1648
1653
  UpdateServiceResponse.add_member(:auth_type, Shapes::ShapeRef.new(shape: AuthType, location_name: "authType"))
1654
+ UpdateServiceResponse.add_member(:idle_timeout_seconds, Shapes::ShapeRef.new(shape: IdleTimeoutSeconds, location_name: "idleTimeoutSeconds"))
1649
1655
  UpdateServiceResponse.struct_class = Types::UpdateServiceResponse
1650
1656
 
1651
1657
  UpdateTargetGroupRequest.add_member(:target_group_identifier, Shapes::ShapeRef.new(shape: TargetGroupIdentifier, required: true, location: "uri", location_name: "targetGroupIdentifier"))
@@ -1187,6 +1187,15 @@ module Aws::VPCLattice
1187
1187
  # used, auth is enabled and an auth policy is required.
1188
1188
  # @return [String]
1189
1189
  #
1190
+ # @!attribute [rw] idle_timeout_seconds
1191
+ # The amount of time, in seconds, that a connection can remain idle
1192
+ # (no data sent) before VPC Lattice closes it. The valid range is 60
1193
+ # to 600 seconds. If you don't specify a value, the default is 60
1194
+ # seconds. This setting does not change the maximum connection
1195
+ # duration of 10 minutes; connections are still closed when they reach
1196
+ # that limit.
1197
+ # @return [Integer]
1198
+ #
1190
1199
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/CreateServiceRequest AWS API Documentation
1191
1200
  #
1192
1201
  class CreateServiceRequest < Struct.new(
@@ -1195,7 +1204,8 @@ module Aws::VPCLattice
1195
1204
  :tags,
1196
1205
  :custom_domain_name,
1197
1206
  :certificate_arn,
1198
- :auth_type)
1207
+ :auth_type,
1208
+ :idle_timeout_seconds)
1199
1209
  SENSITIVE = []
1200
1210
  include Aws::Structure
1201
1211
  end
@@ -1229,6 +1239,11 @@ module Aws::VPCLattice
1229
1239
  # The type of IAM policy.
1230
1240
  # @return [String]
1231
1241
  #
1242
+ # @!attribute [rw] idle_timeout_seconds
1243
+ # The amount of time, in seconds, that a connection can remain idle
1244
+ # before VPC Lattice closes it.
1245
+ # @return [Integer]
1246
+ #
1232
1247
  # @!attribute [rw] dns_entry
1233
1248
  # The public DNS name of the service.
1234
1249
  # @return [Types::DnsEntry]
@@ -1243,6 +1258,7 @@ module Aws::VPCLattice
1243
1258
  :certificate_arn,
1244
1259
  :status,
1245
1260
  :auth_type,
1261
+ :idle_timeout_seconds,
1246
1262
  :dns_entry)
1247
1263
  SENSITIVE = []
1248
1264
  include Aws::Structure
@@ -2371,11 +2387,12 @@ module Aws::VPCLattice
2371
2387
  # @return [Array<String>]
2372
2388
  #
2373
2389
  # @!attribute [rw] service_managed
2374
- # Indicates whether the resource gateway is managed by an AWS service.
2390
+ # Indicates whether the resource gateway is managed by an Amazon Web
2391
+ # Services service.
2375
2392
  # @return [Boolean]
2376
2393
  #
2377
2394
  # @!attribute [rw] managed_by
2378
- # The AWS service that manages the resource gateway.
2395
+ # The Amazon Web Services service that manages the resource gateway.
2379
2396
  # @return [String]
2380
2397
  #
2381
2398
  # @!attribute [rw] security_group_ids
@@ -2958,6 +2975,11 @@ module Aws::VPCLattice
2958
2975
  # The type of IAM policy.
2959
2976
  # @return [String]
2960
2977
  #
2978
+ # @!attribute [rw] idle_timeout_seconds
2979
+ # The amount of time, in seconds, that a connection can remain idle
2980
+ # before VPC Lattice closes it.
2981
+ # @return [Integer]
2982
+ #
2961
2983
  # @!attribute [rw] failure_code
2962
2984
  # The failure code.
2963
2985
  # @return [String]
@@ -2979,6 +3001,7 @@ module Aws::VPCLattice
2979
3001
  :certificate_arn,
2980
3002
  :status,
2981
3003
  :auth_type,
3004
+ :idle_timeout_seconds,
2982
3005
  :failure_code,
2983
3006
  :failure_message)
2984
3007
  SENSITIVE = []
@@ -5964,12 +5987,22 @@ module Aws::VPCLattice
5964
5987
  # used, auth is enabled and an auth policy is required.
5965
5988
  # @return [String]
5966
5989
  #
5990
+ # @!attribute [rw] idle_timeout_seconds
5991
+ # The amount of time, in seconds, that a connection can remain idle
5992
+ # (no data sent) before VPC Lattice closes it. The valid range is 60
5993
+ # to 600 seconds. If you don't specify a value, the default is 60
5994
+ # seconds. This setting does not change the maximum connection
5995
+ # duration of 10 minutes; connections are still closed when they reach
5996
+ # that limit.
5997
+ # @return [Integer]
5998
+ #
5967
5999
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceRequest AWS API Documentation
5968
6000
  #
5969
6001
  class UpdateServiceRequest < Struct.new(
5970
6002
  :service_identifier,
5971
6003
  :certificate_arn,
5972
- :auth_type)
6004
+ :auth_type,
6005
+ :idle_timeout_seconds)
5973
6006
  SENSITIVE = []
5974
6007
  include Aws::Structure
5975
6008
  end
@@ -5998,6 +6031,11 @@ module Aws::VPCLattice
5998
6031
  # The type of IAM policy.
5999
6032
  # @return [String]
6000
6033
  #
6034
+ # @!attribute [rw] idle_timeout_seconds
6035
+ # The amount of time, in seconds, that a connection can remain idle
6036
+ # before VPC Lattice closes it.
6037
+ # @return [Integer]
6038
+ #
6001
6039
  # @see http://docs.aws.amazon.com/goto/WebAPI/vpc-lattice-2022-11-30/UpdateServiceResponse AWS API Documentation
6002
6040
  #
6003
6041
  class UpdateServiceResponse < Struct.new(
@@ -6006,7 +6044,8 @@ module Aws::VPCLattice
6006
6044
  :name,
6007
6045
  :custom_domain_name,
6008
6046
  :certificate_arn,
6009
- :auth_type)
6047
+ :auth_type,
6048
+ :idle_timeout_seconds)
6010
6049
  SENSITIVE = []
6011
6050
  include Aws::Structure
6012
6051
  end
@@ -55,7 +55,7 @@ module Aws::VPCLattice
55
55
  autoload :EndpointProvider, 'aws-sdk-vpclattice/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-vpclattice/endpoints'
57
57
 
58
- GEM_VERSION = '1.50.0'
58
+ GEM_VERSION = '1.51.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -236,6 +236,7 @@ module Aws
236
236
  def certificate_arn: () -> ::String
237
237
  def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
238
238
  def auth_type: () -> ("NONE" | "AWS_IAM")
239
+ def idle_timeout_seconds: () -> ::Integer
239
240
  def dns_entry: () -> Types::DnsEntry
240
241
  end
241
242
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#create_service-instance_method
@@ -245,7 +246,8 @@ module Aws
245
246
  ?tags: Hash[::String, ::String],
246
247
  ?custom_domain_name: ::String,
247
248
  ?certificate_arn: ::String,
248
- ?auth_type: ("NONE" | "AWS_IAM")
249
+ ?auth_type: ("NONE" | "AWS_IAM"),
250
+ ?idle_timeout_seconds: ::Integer
249
251
  ) -> _CreateServiceResponseSuccess
250
252
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServiceResponseSuccess
251
253
 
@@ -698,6 +700,7 @@ module Aws
698
700
  def certificate_arn: () -> ::String
699
701
  def status: () -> ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
700
702
  def auth_type: () -> ("NONE" | "AWS_IAM")
703
+ def idle_timeout_seconds: () -> ::Integer
701
704
  def failure_code: () -> ::String
702
705
  def failure_message: () -> ::String
703
706
  end
@@ -1218,12 +1221,14 @@ module Aws
1218
1221
  def custom_domain_name: () -> ::String
1219
1222
  def certificate_arn: () -> ::String
1220
1223
  def auth_type: () -> ("NONE" | "AWS_IAM")
1224
+ def idle_timeout_seconds: () -> ::Integer
1221
1225
  end
1222
1226
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VPCLattice/Client.html#update_service-instance_method
1223
1227
  def update_service: (
1224
1228
  service_identifier: ::String,
1225
1229
  ?certificate_arn: ::String,
1226
- ?auth_type: ("NONE" | "AWS_IAM")
1230
+ ?auth_type: ("NONE" | "AWS_IAM"),
1231
+ ?idle_timeout_seconds: ::Integer
1227
1232
  ) -> _UpdateServiceResponseSuccess
1228
1233
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServiceResponseSuccess
1229
1234
 
data/sig/types.rbs CHANGED
@@ -262,6 +262,7 @@ module Aws::VPCLattice
262
262
  attr_accessor custom_domain_name: ::String
263
263
  attr_accessor certificate_arn: ::String
264
264
  attr_accessor auth_type: ("NONE" | "AWS_IAM")
265
+ attr_accessor idle_timeout_seconds: ::Integer
265
266
  SENSITIVE: []
266
267
  end
267
268
 
@@ -273,6 +274,7 @@ module Aws::VPCLattice
273
274
  attr_accessor certificate_arn: ::String
274
275
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
275
276
  attr_accessor auth_type: ("NONE" | "AWS_IAM")
277
+ attr_accessor idle_timeout_seconds: ::Integer
276
278
  attr_accessor dns_entry: Types::DnsEntry
277
279
  SENSITIVE: []
278
280
  end
@@ -762,6 +764,7 @@ module Aws::VPCLattice
762
764
  attr_accessor certificate_arn: ::String
763
765
  attr_accessor status: ("ACTIVE" | "CREATE_IN_PROGRESS" | "DELETE_IN_PROGRESS" | "CREATE_FAILED" | "DELETE_FAILED")
764
766
  attr_accessor auth_type: ("NONE" | "AWS_IAM")
767
+ attr_accessor idle_timeout_seconds: ::Integer
765
768
  attr_accessor failure_code: ::String
766
769
  attr_accessor failure_message: ::String
767
770
  SENSITIVE: []
@@ -1592,6 +1595,7 @@ module Aws::VPCLattice
1592
1595
  attr_accessor service_identifier: ::String
1593
1596
  attr_accessor certificate_arn: ::String
1594
1597
  attr_accessor auth_type: ("NONE" | "AWS_IAM")
1598
+ attr_accessor idle_timeout_seconds: ::Integer
1595
1599
  SENSITIVE: []
1596
1600
  end
1597
1601
 
@@ -1602,6 +1606,7 @@ module Aws::VPCLattice
1602
1606
  attr_accessor custom_domain_name: ::String
1603
1607
  attr_accessor certificate_arn: ::String
1604
1608
  attr_accessor auth_type: ("NONE" | "AWS_IAM")
1609
+ attr_accessor idle_timeout_seconds: ::Integer
1605
1610
  SENSITIVE: []
1606
1611
  end
1607
1612
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-vpclattice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.51.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services