aws-sdk-ec2 1.409.0 → 1.410.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: 4a79ccac49b51b8378239a2bb7d20dcdd1b374ec35da225c643fab27dbfc59e8
4
- data.tar.gz: 64d0388f5977d642059a02f0cd2ee7cca8cb0446aae09e35400eb06f621e4fa2
3
+ metadata.gz: '09d342cb4393dbfea5ca3d62fb71da42130c8c9f3736f4bf82d4972c865843fa'
4
+ data.tar.gz: 04c3120ac172a4ce2298ec9897b05c2168dc02b4a1b059b8e7df4bcf5eae295d
5
5
  SHA512:
6
- metadata.gz: de18098f37dd80418d44b95f380971d408d6c7c809f2be8d1ba2808d83f9c77d1e275c9d0a8771a09e9a03a708ebe9e34d4cee7225a7cc345333713ae7a58107
7
- data.tar.gz: 115f0c635fcb911a374bd0011557b3684652ba108fbdd6706fe752374f93cc6c04507d14eb593806ceb1d625d4f6977f4a5265c4fdb049bed6a624f13aecdd6a
6
+ metadata.gz: 6afa3eb2318b54a1a797f81be5429cc50773b8ea4b4133b5005c831d71cbcec838614bbc5c2d4a73a13f4dd783bbcd7e9174d4012e2f0bd783cbf2be17ca5967
7
+ data.tar.gz: 49869c32c85505a5a814494348746fbe9d6cedcd55f491f1d83698a50a8dca277f0a085c80dad526afbc85f47e03b56e8fc97a6240ff0f2376c140a2695f5d18
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.410.0 (2023-09-28)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Customer Managed Key encryption for Amazon Verified Access resources
8
+
4
9
  1.409.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.409.0
1
+ 1.410.0
@@ -2882,6 +2882,8 @@ module Aws::EC2
2882
2882
  # resp.verified_access_trust_provider.tags #=> Array
2883
2883
  # resp.verified_access_trust_provider.tags[0].key #=> String
2884
2884
  # resp.verified_access_trust_provider.tags[0].value #=> String
2885
+ # resp.verified_access_trust_provider.sse_specification.customer_managed_key_enabled #=> Boolean
2886
+ # resp.verified_access_trust_provider.sse_specification.kms_key_arn #=> String
2885
2887
  # resp.verified_access_instance.verified_access_instance_id #=> String
2886
2888
  # resp.verified_access_instance.description #=> String
2887
2889
  # resp.verified_access_instance.verified_access_trust_providers #=> Array
@@ -13343,6 +13345,9 @@ module Aws::EC2
13343
13345
  # If you have the required permissions, the error response is
13344
13346
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13345
13347
  #
13348
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
13349
+ # Options for server side encryption.
13350
+ #
13346
13351
  # @return [Types::CreateVerifiedAccessEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13347
13352
  #
13348
13353
  # * {Types::CreateVerifiedAccessEndpointResult#verified_access_endpoint #verified_access_endpoint} => Types::VerifiedAccessEndpoint
@@ -13383,6 +13388,10 @@ module Aws::EC2
13383
13388
  # ],
13384
13389
  # client_token: "String",
13385
13390
  # dry_run: false,
13391
+ # sse_specification: {
13392
+ # customer_managed_key_enabled: false,
13393
+ # kms_key_arn: "KmsKeyArn",
13394
+ # },
13386
13395
  # })
13387
13396
  #
13388
13397
  # @example Response structure
@@ -13415,6 +13424,8 @@ module Aws::EC2
13415
13424
  # resp.verified_access_endpoint.tags #=> Array
13416
13425
  # resp.verified_access_endpoint.tags[0].key #=> String
13417
13426
  # resp.verified_access_endpoint.tags[0].value #=> String
13427
+ # resp.verified_access_endpoint.sse_specification.customer_managed_key_enabled #=> Boolean
13428
+ # resp.verified_access_endpoint.sse_specification.kms_key_arn #=> String
13418
13429
  #
13419
13430
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessEndpoint AWS API Documentation
13420
13431
  #
@@ -13462,6 +13473,9 @@ module Aws::EC2
13462
13473
  # If you have the required permissions, the error response is
13463
13474
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13464
13475
  #
13476
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
13477
+ # Options for server side encryption.
13478
+ #
13465
13479
  # @return [Types::CreateVerifiedAccessGroupResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13466
13480
  #
13467
13481
  # * {Types::CreateVerifiedAccessGroupResult#verified_access_group #verified_access_group} => Types::VerifiedAccessGroup
@@ -13485,6 +13499,10 @@ module Aws::EC2
13485
13499
  # ],
13486
13500
  # client_token: "String",
13487
13501
  # dry_run: false,
13502
+ # sse_specification: {
13503
+ # customer_managed_key_enabled: false,
13504
+ # kms_key_arn: "KmsKeyArn",
13505
+ # },
13488
13506
  # })
13489
13507
  #
13490
13508
  # @example Response structure
@@ -13500,6 +13518,8 @@ module Aws::EC2
13500
13518
  # resp.verified_access_group.tags #=> Array
13501
13519
  # resp.verified_access_group.tags[0].key #=> String
13502
13520
  # resp.verified_access_group.tags[0].value #=> String
13521
+ # resp.verified_access_group.sse_specification.customer_managed_key_enabled #=> Boolean
13522
+ # resp.verified_access_group.sse_specification.kms_key_arn #=> String
13503
13523
  #
13504
13524
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessGroup AWS API Documentation
13505
13525
  #
@@ -13539,8 +13559,8 @@ module Aws::EC2
13539
13559
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13540
13560
  #
13541
13561
  # @option params [Boolean] :fips_enabled
13542
- # Choose to enable or disable support for Federal Information Processing
13543
- # Standards (FIPS) on the instance.
13562
+ # Enable or disable support for Federal Information Processing Standards
13563
+ # (FIPS) on the instance.
13544
13564
  #
13545
13565
  # @return [Types::CreateVerifiedAccessInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13546
13566
  #
@@ -13644,6 +13664,9 @@ module Aws::EC2
13644
13664
  # If you have the required permissions, the error response is
13645
13665
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13646
13666
  #
13667
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
13668
+ # Options for server side encryption.
13669
+ #
13647
13670
  # @return [Types::CreateVerifiedAccessTrustProviderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13648
13671
  #
13649
13672
  # * {Types::CreateVerifiedAccessTrustProviderResult#verified_access_trust_provider #verified_access_trust_provider} => Types::VerifiedAccessTrustProvider
@@ -13681,6 +13704,10 @@ module Aws::EC2
13681
13704
  # ],
13682
13705
  # client_token: "String",
13683
13706
  # dry_run: false,
13707
+ # sse_specification: {
13708
+ # customer_managed_key_enabled: false,
13709
+ # kms_key_arn: "KmsKeyArn",
13710
+ # },
13684
13711
  # })
13685
13712
  #
13686
13713
  # @example Response structure
@@ -13704,6 +13731,8 @@ module Aws::EC2
13704
13731
  # resp.verified_access_trust_provider.tags #=> Array
13705
13732
  # resp.verified_access_trust_provider.tags[0].key #=> String
13706
13733
  # resp.verified_access_trust_provider.tags[0].value #=> String
13734
+ # resp.verified_access_trust_provider.sse_specification.customer_managed_key_enabled #=> Boolean
13735
+ # resp.verified_access_trust_provider.sse_specification.kms_key_arn #=> String
13707
13736
  #
13708
13737
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProvider AWS API Documentation
13709
13738
  #
@@ -18062,6 +18091,8 @@ module Aws::EC2
18062
18091
  # resp.verified_access_endpoint.tags #=> Array
18063
18092
  # resp.verified_access_endpoint.tags[0].key #=> String
18064
18093
  # resp.verified_access_endpoint.tags[0].value #=> String
18094
+ # resp.verified_access_endpoint.sse_specification.customer_managed_key_enabled #=> Boolean
18095
+ # resp.verified_access_endpoint.sse_specification.kms_key_arn #=> String
18065
18096
  #
18066
18097
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessEndpoint AWS API Documentation
18067
18098
  #
@@ -18120,6 +18151,8 @@ module Aws::EC2
18120
18151
  # resp.verified_access_group.tags #=> Array
18121
18152
  # resp.verified_access_group.tags[0].key #=> String
18122
18153
  # resp.verified_access_group.tags[0].value #=> String
18154
+ # resp.verified_access_group.sse_specification.customer_managed_key_enabled #=> Boolean
18155
+ # resp.verified_access_group.sse_specification.kms_key_arn #=> String
18123
18156
  #
18124
18157
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessGroup AWS API Documentation
18125
18158
  #
@@ -18247,6 +18280,8 @@ module Aws::EC2
18247
18280
  # resp.verified_access_trust_provider.tags #=> Array
18248
18281
  # resp.verified_access_trust_provider.tags[0].key #=> String
18249
18282
  # resp.verified_access_trust_provider.tags[0].value #=> String
18283
+ # resp.verified_access_trust_provider.sse_specification.customer_managed_key_enabled #=> Boolean
18284
+ # resp.verified_access_trust_provider.sse_specification.kms_key_arn #=> String
18250
18285
  #
18251
18286
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessTrustProvider AWS API Documentation
18252
18287
  #
@@ -34334,6 +34369,8 @@ module Aws::EC2
34334
34369
  # resp.verified_access_endpoints[0].tags #=> Array
34335
34370
  # resp.verified_access_endpoints[0].tags[0].key #=> String
34336
34371
  # resp.verified_access_endpoints[0].tags[0].value #=> String
34372
+ # resp.verified_access_endpoints[0].sse_specification.customer_managed_key_enabled #=> Boolean
34373
+ # resp.verified_access_endpoints[0].sse_specification.kms_key_arn #=> String
34337
34374
  # resp.next_token #=> String
34338
34375
  #
34339
34376
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVerifiedAccessEndpoints AWS API Documentation
@@ -34407,6 +34444,8 @@ module Aws::EC2
34407
34444
  # resp.verified_access_groups[0].tags #=> Array
34408
34445
  # resp.verified_access_groups[0].tags[0].key #=> String
34409
34446
  # resp.verified_access_groups[0].tags[0].value #=> String
34447
+ # resp.verified_access_groups[0].sse_specification.customer_managed_key_enabled #=> Boolean
34448
+ # resp.verified_access_groups[0].sse_specification.kms_key_arn #=> String
34410
34449
  # resp.next_token #=> String
34411
34450
  #
34412
34451
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVerifiedAccessGroups AWS API Documentation
@@ -34632,6 +34671,8 @@ module Aws::EC2
34632
34671
  # resp.verified_access_trust_providers[0].tags #=> Array
34633
34672
  # resp.verified_access_trust_providers[0].tags[0].key #=> String
34634
34673
  # resp.verified_access_trust_providers[0].tags[0].value #=> String
34674
+ # resp.verified_access_trust_providers[0].sse_specification.customer_managed_key_enabled #=> Boolean
34675
+ # resp.verified_access_trust_providers[0].sse_specification.kms_key_arn #=> String
34635
34676
  # resp.next_token #=> String
34636
34677
  #
34637
34678
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVerifiedAccessTrustProviders AWS API Documentation
@@ -36875,6 +36916,8 @@ module Aws::EC2
36875
36916
  # resp.verified_access_trust_provider.tags #=> Array
36876
36917
  # resp.verified_access_trust_provider.tags[0].key #=> String
36877
36918
  # resp.verified_access_trust_provider.tags[0].value #=> String
36919
+ # resp.verified_access_trust_provider.sse_specification.customer_managed_key_enabled #=> Boolean
36920
+ # resp.verified_access_trust_provider.sse_specification.kms_key_arn #=> String
36878
36921
  # resp.verified_access_instance.verified_access_instance_id #=> String
36879
36922
  # resp.verified_access_instance.description #=> String
36880
36923
  # resp.verified_access_instance.verified_access_trust_providers #=> Array
@@ -47826,6 +47869,8 @@ module Aws::EC2
47826
47869
  # resp.verified_access_endpoint.tags #=> Array
47827
47870
  # resp.verified_access_endpoint.tags[0].key #=> String
47828
47871
  # resp.verified_access_endpoint.tags[0].value #=> String
47872
+ # resp.verified_access_endpoint.sse_specification.customer_managed_key_enabled #=> Boolean
47873
+ # resp.verified_access_endpoint.sse_specification.kms_key_arn #=> String
47829
47874
  #
47830
47875
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpoint AWS API Documentation
47831
47876
  #
@@ -47842,7 +47887,7 @@ module Aws::EC2
47842
47887
  # @option params [required, String] :verified_access_endpoint_id
47843
47888
  # The ID of the Verified Access endpoint.
47844
47889
  #
47845
- # @option params [required, Boolean] :policy_enabled
47890
+ # @option params [Boolean] :policy_enabled
47846
47891
  # The status of the Verified Access policy.
47847
47892
  #
47848
47893
  # @option params [String] :policy_document
@@ -47866,25 +47911,35 @@ module Aws::EC2
47866
47911
  # If you have the required permissions, the error response is
47867
47912
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
47868
47913
  #
47914
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
47915
+ # Options for server side encryption.
47916
+ #
47869
47917
  # @return [Types::ModifyVerifiedAccessEndpointPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
47870
47918
  #
47871
47919
  # * {Types::ModifyVerifiedAccessEndpointPolicyResult#policy_enabled #policy_enabled} => Boolean
47872
47920
  # * {Types::ModifyVerifiedAccessEndpointPolicyResult#policy_document #policy_document} => String
47921
+ # * {Types::ModifyVerifiedAccessEndpointPolicyResult#sse_specification #sse_specification} => Types::VerifiedAccessSseSpecificationResponse
47873
47922
  #
47874
47923
  # @example Request syntax with placeholder values
47875
47924
  #
47876
47925
  # resp = client.modify_verified_access_endpoint_policy({
47877
47926
  # verified_access_endpoint_id: "VerifiedAccessEndpointId", # required
47878
- # policy_enabled: false, # required
47927
+ # policy_enabled: false,
47879
47928
  # policy_document: "String",
47880
47929
  # client_token: "String",
47881
47930
  # dry_run: false,
47931
+ # sse_specification: {
47932
+ # customer_managed_key_enabled: false,
47933
+ # kms_key_arn: "KmsKeyArn",
47934
+ # },
47882
47935
  # })
47883
47936
  #
47884
47937
  # @example Response structure
47885
47938
  #
47886
47939
  # resp.policy_enabled #=> Boolean
47887
47940
  # resp.policy_document #=> String
47941
+ # resp.sse_specification.customer_managed_key_enabled #=> Boolean
47942
+ # resp.sse_specification.kms_key_arn #=> String
47888
47943
  #
47889
47944
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicy AWS API Documentation
47890
47945
  #
@@ -47952,6 +48007,8 @@ module Aws::EC2
47952
48007
  # resp.verified_access_group.tags #=> Array
47953
48008
  # resp.verified_access_group.tags[0].key #=> String
47954
48009
  # resp.verified_access_group.tags[0].value #=> String
48010
+ # resp.verified_access_group.sse_specification.customer_managed_key_enabled #=> Boolean
48011
+ # resp.verified_access_group.sse_specification.kms_key_arn #=> String
47955
48012
  #
47956
48013
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroup AWS API Documentation
47957
48014
  #
@@ -47968,7 +48025,7 @@ module Aws::EC2
47968
48025
  # @option params [required, String] :verified_access_group_id
47969
48026
  # The ID of the Verified Access group.
47970
48027
  #
47971
- # @option params [required, Boolean] :policy_enabled
48028
+ # @option params [Boolean] :policy_enabled
47972
48029
  # The status of the Verified Access policy.
47973
48030
  #
47974
48031
  # @option params [String] :policy_document
@@ -47992,25 +48049,35 @@ module Aws::EC2
47992
48049
  # If you have the required permissions, the error response is
47993
48050
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
47994
48051
  #
48052
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
48053
+ # Options for server side encryption.
48054
+ #
47995
48055
  # @return [Types::ModifyVerifiedAccessGroupPolicyResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
47996
48056
  #
47997
48057
  # * {Types::ModifyVerifiedAccessGroupPolicyResult#policy_enabled #policy_enabled} => Boolean
47998
48058
  # * {Types::ModifyVerifiedAccessGroupPolicyResult#policy_document #policy_document} => String
48059
+ # * {Types::ModifyVerifiedAccessGroupPolicyResult#sse_specification #sse_specification} => Types::VerifiedAccessSseSpecificationResponse
47999
48060
  #
48000
48061
  # @example Request syntax with placeholder values
48001
48062
  #
48002
48063
  # resp = client.modify_verified_access_group_policy({
48003
48064
  # verified_access_group_id: "VerifiedAccessGroupId", # required
48004
- # policy_enabled: false, # required
48065
+ # policy_enabled: false,
48005
48066
  # policy_document: "String",
48006
48067
  # client_token: "String",
48007
48068
  # dry_run: false,
48069
+ # sse_specification: {
48070
+ # customer_managed_key_enabled: false,
48071
+ # kms_key_arn: "KmsKeyArn",
48072
+ # },
48008
48073
  # })
48009
48074
  #
48010
48075
  # @example Response structure
48011
48076
  #
48012
48077
  # resp.policy_enabled #=> Boolean
48013
48078
  # resp.policy_document #=> String
48079
+ # resp.sse_specification.customer_managed_key_enabled #=> Boolean
48080
+ # resp.sse_specification.kms_key_arn #=> String
48014
48081
  #
48015
48082
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicy AWS API Documentation
48016
48083
  #
@@ -48204,6 +48271,9 @@ module Aws::EC2
48204
48271
  #
48205
48272
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
48206
48273
  #
48274
+ # @option params [Types::VerifiedAccessSseSpecificationRequest] :sse_specification
48275
+ # Options for server side encryption.
48276
+ #
48207
48277
  # @return [Types::ModifyVerifiedAccessTrustProviderResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
48208
48278
  #
48209
48279
  # * {Types::ModifyVerifiedAccessTrustProviderResult#verified_access_trust_provider #verified_access_trust_provider} => Types::VerifiedAccessTrustProvider
@@ -48224,6 +48294,10 @@ module Aws::EC2
48224
48294
  # description: "String",
48225
48295
  # dry_run: false,
48226
48296
  # client_token: "String",
48297
+ # sse_specification: {
48298
+ # customer_managed_key_enabled: false,
48299
+ # kms_key_arn: "KmsKeyArn",
48300
+ # },
48227
48301
  # })
48228
48302
  #
48229
48303
  # @example Response structure
@@ -48247,6 +48321,8 @@ module Aws::EC2
48247
48321
  # resp.verified_access_trust_provider.tags #=> Array
48248
48322
  # resp.verified_access_trust_provider.tags[0].key #=> String
48249
48323
  # resp.verified_access_trust_provider.tags[0].value #=> String
48324
+ # resp.verified_access_trust_provider.sse_specification.customer_managed_key_enabled #=> Boolean
48325
+ # resp.verified_access_trust_provider.sse_specification.kms_key_arn #=> String
48250
48326
  #
48251
48327
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProvider AWS API Documentation
48252
48328
  #
@@ -56894,7 +56970,7 @@ module Aws::EC2
56894
56970
  params: params,
56895
56971
  config: config)
56896
56972
  context[:gem_name] = 'aws-sdk-ec2'
56897
- context[:gem_version] = '1.409.0'
56973
+ context[:gem_version] = '1.410.0'
56898
56974
  Seahorse::Client::Request.new(handlers, context)
56899
56975
  end
56900
56976
 
@@ -1813,6 +1813,7 @@ module Aws::EC2
1813
1813
  KeyPairList = Shapes::ListShape.new(name: 'KeyPairList')
1814
1814
  KeyPairName = Shapes::StringShape.new(name: 'KeyPairName')
1815
1815
  KeyType = Shapes::StringShape.new(name: 'KeyType')
1816
+ KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
1816
1817
  KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
1817
1818
  LastError = Shapes::StructureShape.new(name: 'LastError')
1818
1819
  LaunchPermission = Shapes::StructureShape.new(name: 'LaunchPermission')
@@ -2933,6 +2934,8 @@ module Aws::EC2
2933
2934
  VerifiedAccessLogS3Destination = Shapes::StructureShape.new(name: 'VerifiedAccessLogS3Destination')
2934
2935
  VerifiedAccessLogS3DestinationOptions = Shapes::StructureShape.new(name: 'VerifiedAccessLogS3DestinationOptions')
2935
2936
  VerifiedAccessLogs = Shapes::StructureShape.new(name: 'VerifiedAccessLogs')
2937
+ VerifiedAccessSseSpecificationRequest = Shapes::StructureShape.new(name: 'VerifiedAccessSseSpecificationRequest')
2938
+ VerifiedAccessSseSpecificationResponse = Shapes::StructureShape.new(name: 'VerifiedAccessSseSpecificationResponse')
2936
2939
  VerifiedAccessTrustProvider = Shapes::StructureShape.new(name: 'VerifiedAccessTrustProvider')
2937
2940
  VerifiedAccessTrustProviderCondensed = Shapes::StructureShape.new(name: 'VerifiedAccessTrustProviderCondensed')
2938
2941
  VerifiedAccessTrustProviderCondensedList = Shapes::ListShape.new(name: 'VerifiedAccessTrustProviderCondensedList')
@@ -5153,6 +5156,7 @@ module Aws::EC2
5153
5156
  CreateVerifiedAccessEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5154
5157
  CreateVerifiedAccessEndpointRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5155
5158
  CreateVerifiedAccessEndpointRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5159
+ CreateVerifiedAccessEndpointRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
5156
5160
  CreateVerifiedAccessEndpointRequest.struct_class = Types::CreateVerifiedAccessEndpointRequest
5157
5161
 
5158
5162
  CreateVerifiedAccessEndpointResult.add_member(:verified_access_endpoint, Shapes::ShapeRef.new(shape: VerifiedAccessEndpoint, location_name: "verifiedAccessEndpoint"))
@@ -5166,6 +5170,7 @@ module Aws::EC2
5166
5170
  CreateVerifiedAccessGroupRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5167
5171
  CreateVerifiedAccessGroupRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5168
5172
  CreateVerifiedAccessGroupRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5173
+ CreateVerifiedAccessGroupRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
5169
5174
  CreateVerifiedAccessGroupRequest.struct_class = Types::CreateVerifiedAccessGroupRequest
5170
5175
 
5171
5176
  CreateVerifiedAccessGroupResult.add_member(:verified_access_group, Shapes::ShapeRef.new(shape: VerifiedAccessGroup, location_name: "verifiedAccessGroup"))
@@ -5203,6 +5208,7 @@ module Aws::EC2
5203
5208
  CreateVerifiedAccessTrustProviderRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5204
5209
  CreateVerifiedAccessTrustProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5205
5210
  CreateVerifiedAccessTrustProviderRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5211
+ CreateVerifiedAccessTrustProviderRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
5206
5212
  CreateVerifiedAccessTrustProviderRequest.struct_class = Types::CreateVerifiedAccessTrustProviderRequest
5207
5213
 
5208
5214
  CreateVerifiedAccessTrustProviderResult.add_member(:verified_access_trust_provider, Shapes::ShapeRef.new(shape: VerifiedAccessTrustProvider, location_name: "verifiedAccessTrustProvider"))
@@ -11271,14 +11277,16 @@ module Aws::EC2
11271
11277
  ModifyVerifiedAccessEndpointLoadBalancerOptions.struct_class = Types::ModifyVerifiedAccessEndpointLoadBalancerOptions
11272
11278
 
11273
11279
  ModifyVerifiedAccessEndpointPolicyRequest.add_member(:verified_access_endpoint_id, Shapes::ShapeRef.new(shape: VerifiedAccessEndpointId, required: true, location_name: "VerifiedAccessEndpointId"))
11274
- ModifyVerifiedAccessEndpointPolicyRequest.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "PolicyEnabled"))
11280
+ ModifyVerifiedAccessEndpointPolicyRequest.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PolicyEnabled"))
11275
11281
  ModifyVerifiedAccessEndpointPolicyRequest.add_member(:policy_document, Shapes::ShapeRef.new(shape: String, location_name: "PolicyDocument"))
11276
11282
  ModifyVerifiedAccessEndpointPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
11277
11283
  ModifyVerifiedAccessEndpointPolicyRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
11284
+ ModifyVerifiedAccessEndpointPolicyRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
11278
11285
  ModifyVerifiedAccessEndpointPolicyRequest.struct_class = Types::ModifyVerifiedAccessEndpointPolicyRequest
11279
11286
 
11280
11287
  ModifyVerifiedAccessEndpointPolicyResult.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "policyEnabled"))
11281
11288
  ModifyVerifiedAccessEndpointPolicyResult.add_member(:policy_document, Shapes::ShapeRef.new(shape: String, location_name: "policyDocument"))
11289
+ ModifyVerifiedAccessEndpointPolicyResult.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationResponse, location_name: "sseSpecification"))
11282
11290
  ModifyVerifiedAccessEndpointPolicyResult.struct_class = Types::ModifyVerifiedAccessEndpointPolicyResult
11283
11291
 
11284
11292
  ModifyVerifiedAccessEndpointRequest.add_member(:verified_access_endpoint_id, Shapes::ShapeRef.new(shape: VerifiedAccessEndpointId, required: true, location_name: "VerifiedAccessEndpointId"))
@@ -11296,14 +11304,16 @@ module Aws::EC2
11296
11304
  ModifyVerifiedAccessEndpointSubnetIdList.member = Shapes::ShapeRef.new(shape: SubnetId, location_name: "item")
11297
11305
 
11298
11306
  ModifyVerifiedAccessGroupPolicyRequest.add_member(:verified_access_group_id, Shapes::ShapeRef.new(shape: VerifiedAccessGroupId, required: true, location_name: "VerifiedAccessGroupId"))
11299
- ModifyVerifiedAccessGroupPolicyRequest.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "PolicyEnabled"))
11307
+ ModifyVerifiedAccessGroupPolicyRequest.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PolicyEnabled"))
11300
11308
  ModifyVerifiedAccessGroupPolicyRequest.add_member(:policy_document, Shapes::ShapeRef.new(shape: String, location_name: "PolicyDocument"))
11301
11309
  ModifyVerifiedAccessGroupPolicyRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
11302
11310
  ModifyVerifiedAccessGroupPolicyRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
11311
+ ModifyVerifiedAccessGroupPolicyRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
11303
11312
  ModifyVerifiedAccessGroupPolicyRequest.struct_class = Types::ModifyVerifiedAccessGroupPolicyRequest
11304
11313
 
11305
11314
  ModifyVerifiedAccessGroupPolicyResult.add_member(:policy_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "policyEnabled"))
11306
11315
  ModifyVerifiedAccessGroupPolicyResult.add_member(:policy_document, Shapes::ShapeRef.new(shape: String, location_name: "policyDocument"))
11316
+ ModifyVerifiedAccessGroupPolicyResult.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationResponse, location_name: "sseSpecification"))
11307
11317
  ModifyVerifiedAccessGroupPolicyResult.struct_class = Types::ModifyVerifiedAccessGroupPolicyResult
11308
11318
 
11309
11319
  ModifyVerifiedAccessGroupRequest.add_member(:verified_access_group_id, Shapes::ShapeRef.new(shape: VerifiedAccessGroupId, required: true, location_name: "VerifiedAccessGroupId"))
@@ -11348,6 +11358,7 @@ module Aws::EC2
11348
11358
  ModifyVerifiedAccessTrustProviderRequest.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
11349
11359
  ModifyVerifiedAccessTrustProviderRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
11350
11360
  ModifyVerifiedAccessTrustProviderRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
11361
+ ModifyVerifiedAccessTrustProviderRequest.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationRequest, location_name: "SseSpecification"))
11351
11362
  ModifyVerifiedAccessTrustProviderRequest.struct_class = Types::ModifyVerifiedAccessTrustProviderRequest
11352
11363
 
11353
11364
  ModifyVerifiedAccessTrustProviderResult.add_member(:verified_access_trust_provider, Shapes::ShapeRef.new(shape: VerifiedAccessTrustProvider, location_name: "verifiedAccessTrustProvider"))
@@ -14543,6 +14554,7 @@ module Aws::EC2
14543
14554
  VerifiedAccessEndpoint.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: String, location_name: "lastUpdatedTime"))
14544
14555
  VerifiedAccessEndpoint.add_member(:deletion_time, Shapes::ShapeRef.new(shape: String, location_name: "deletionTime"))
14545
14556
  VerifiedAccessEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
14557
+ VerifiedAccessEndpoint.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationResponse, location_name: "sseSpecification"))
14546
14558
  VerifiedAccessEndpoint.struct_class = Types::VerifiedAccessEndpoint
14547
14559
 
14548
14560
  VerifiedAccessEndpointEniOptions.add_member(:network_interface_id, Shapes::ShapeRef.new(shape: NetworkInterfaceId, location_name: "networkInterfaceId"))
@@ -14575,6 +14587,7 @@ module Aws::EC2
14575
14587
  VerifiedAccessGroup.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: String, location_name: "lastUpdatedTime"))
14576
14588
  VerifiedAccessGroup.add_member(:deletion_time, Shapes::ShapeRef.new(shape: String, location_name: "deletionTime"))
14577
14589
  VerifiedAccessGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
14590
+ VerifiedAccessGroup.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationResponse, location_name: "sseSpecification"))
14578
14591
  VerifiedAccessGroup.struct_class = Types::VerifiedAccessGroup
14579
14592
 
14580
14593
  VerifiedAccessGroupIdList.member = Shapes::ShapeRef.new(shape: VerifiedAccessGroupId, location_name: "item")
@@ -14649,6 +14662,14 @@ module Aws::EC2
14649
14662
  VerifiedAccessLogs.add_member(:include_trust_context, Shapes::ShapeRef.new(shape: Boolean, location_name: "includeTrustContext"))
14650
14663
  VerifiedAccessLogs.struct_class = Types::VerifiedAccessLogs
14651
14664
 
14665
+ VerifiedAccessSseSpecificationRequest.add_member(:customer_managed_key_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "CustomerManagedKeyEnabled"))
14666
+ VerifiedAccessSseSpecificationRequest.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
14667
+ VerifiedAccessSseSpecificationRequest.struct_class = Types::VerifiedAccessSseSpecificationRequest
14668
+
14669
+ VerifiedAccessSseSpecificationResponse.add_member(:customer_managed_key_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "customerManagedKeyEnabled"))
14670
+ VerifiedAccessSseSpecificationResponse.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "kmsKeyArn"))
14671
+ VerifiedAccessSseSpecificationResponse.struct_class = Types::VerifiedAccessSseSpecificationResponse
14672
+
14652
14673
  VerifiedAccessTrustProvider.add_member(:verified_access_trust_provider_id, Shapes::ShapeRef.new(shape: String, location_name: "verifiedAccessTrustProviderId"))
14653
14674
  VerifiedAccessTrustProvider.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
14654
14675
  VerifiedAccessTrustProvider.add_member(:trust_provider_type, Shapes::ShapeRef.new(shape: TrustProviderType, location_name: "trustProviderType"))
@@ -14660,6 +14681,7 @@ module Aws::EC2
14660
14681
  VerifiedAccessTrustProvider.add_member(:creation_time, Shapes::ShapeRef.new(shape: String, location_name: "creationTime"))
14661
14682
  VerifiedAccessTrustProvider.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: String, location_name: "lastUpdatedTime"))
14662
14683
  VerifiedAccessTrustProvider.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
14684
+ VerifiedAccessTrustProvider.add_member(:sse_specification, Shapes::ShapeRef.new(shape: VerifiedAccessSseSpecificationResponse, location_name: "sseSpecification"))
14663
14685
  VerifiedAccessTrustProvider.struct_class = Types::VerifiedAccessTrustProvider
14664
14686
 
14665
14687
  VerifiedAccessTrustProviderCondensed.add_member(:verified_access_trust_provider_id, Shapes::ShapeRef.new(shape: String, location_name: "verifiedAccessTrustProviderId"))
@@ -11497,6 +11497,10 @@ module Aws::EC2
11497
11497
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11498
11498
  # @return [Boolean]
11499
11499
  #
11500
+ # @!attribute [rw] sse_specification
11501
+ # Options for server side encryption.
11502
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
11503
+ #
11500
11504
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessEndpointRequest AWS API Documentation
11501
11505
  #
11502
11506
  class CreateVerifiedAccessEndpointRequest < Struct.new(
@@ -11513,7 +11517,8 @@ module Aws::EC2
11513
11517
  :policy_document,
11514
11518
  :tag_specifications,
11515
11519
  :client_token,
11516
- :dry_run)
11520
+ :dry_run,
11521
+ :sse_specification)
11517
11522
  SENSITIVE = []
11518
11523
  include Aws::Structure
11519
11524
  end
@@ -11566,6 +11571,10 @@ module Aws::EC2
11566
11571
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11567
11572
  # @return [Boolean]
11568
11573
  #
11574
+ # @!attribute [rw] sse_specification
11575
+ # Options for server side encryption.
11576
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
11577
+ #
11569
11578
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessGroupRequest AWS API Documentation
11570
11579
  #
11571
11580
  class CreateVerifiedAccessGroupRequest < Struct.new(
@@ -11574,7 +11583,8 @@ module Aws::EC2
11574
11583
  :policy_document,
11575
11584
  :tag_specifications,
11576
11585
  :client_token,
11577
- :dry_run)
11586
+ :dry_run,
11587
+ :sse_specification)
11578
11588
  SENSITIVE = []
11579
11589
  include Aws::Structure
11580
11590
  end
@@ -11620,8 +11630,8 @@ module Aws::EC2
11620
11630
  # @return [Boolean]
11621
11631
  #
11622
11632
  # @!attribute [rw] fips_enabled
11623
- # Choose to enable or disable support for Federal Information
11624
- # Processing Standards (FIPS) on the instance.
11633
+ # Enable or disable support for Federal Information Processing
11634
+ # Standards (FIPS) on the instance.
11625
11635
  # @return [Boolean]
11626
11636
  #
11627
11637
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessInstanceRequest AWS API Documentation
@@ -11767,6 +11777,10 @@ module Aws::EC2
11767
11777
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11768
11778
  # @return [Boolean]
11769
11779
  #
11780
+ # @!attribute [rw] sse_specification
11781
+ # Options for server side encryption.
11782
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
11783
+ #
11770
11784
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProviderRequest AWS API Documentation
11771
11785
  #
11772
11786
  class CreateVerifiedAccessTrustProviderRequest < Struct.new(
@@ -11779,7 +11793,8 @@ module Aws::EC2
11779
11793
  :description,
11780
11794
  :tag_specifications,
11781
11795
  :client_token,
11782
- :dry_run)
11796
+ :dry_run,
11797
+ :sse_specification)
11783
11798
  SENSITIVE = []
11784
11799
  include Aws::Structure
11785
11800
  end
@@ -46952,6 +46967,10 @@ module Aws::EC2
46952
46967
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
46953
46968
  # @return [Boolean]
46954
46969
  #
46970
+ # @!attribute [rw] sse_specification
46971
+ # Options for server side encryption.
46972
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
46973
+ #
46955
46974
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyRequest AWS API Documentation
46956
46975
  #
46957
46976
  class ModifyVerifiedAccessEndpointPolicyRequest < Struct.new(
@@ -46959,7 +46978,8 @@ module Aws::EC2
46959
46978
  :policy_enabled,
46960
46979
  :policy_document,
46961
46980
  :client_token,
46962
- :dry_run)
46981
+ :dry_run,
46982
+ :sse_specification)
46963
46983
  SENSITIVE = []
46964
46984
  include Aws::Structure
46965
46985
  end
@@ -46972,11 +46992,16 @@ module Aws::EC2
46972
46992
  # The Verified Access policy document.
46973
46993
  # @return [String]
46974
46994
  #
46995
+ # @!attribute [rw] sse_specification
46996
+ # Describes the options in use for server side encryption.
46997
+ # @return [Types::VerifiedAccessSseSpecificationResponse]
46998
+ #
46975
46999
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyResult AWS API Documentation
46976
47000
  #
46977
47001
  class ModifyVerifiedAccessEndpointPolicyResult < Struct.new(
46978
47002
  :policy_enabled,
46979
- :policy_document)
47003
+ :policy_document,
47004
+ :sse_specification)
46980
47005
  SENSITIVE = []
46981
47006
  include Aws::Structure
46982
47007
  end
@@ -47080,6 +47105,10 @@ module Aws::EC2
47080
47105
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
47081
47106
  # @return [Boolean]
47082
47107
  #
47108
+ # @!attribute [rw] sse_specification
47109
+ # Options for server side encryption.
47110
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
47111
+ #
47083
47112
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyRequest AWS API Documentation
47084
47113
  #
47085
47114
  class ModifyVerifiedAccessGroupPolicyRequest < Struct.new(
@@ -47087,7 +47116,8 @@ module Aws::EC2
47087
47116
  :policy_enabled,
47088
47117
  :policy_document,
47089
47118
  :client_token,
47090
- :dry_run)
47119
+ :dry_run,
47120
+ :sse_specification)
47091
47121
  SENSITIVE = []
47092
47122
  include Aws::Structure
47093
47123
  end
@@ -47100,11 +47130,16 @@ module Aws::EC2
47100
47130
  # The Verified Access policy document.
47101
47131
  # @return [String]
47102
47132
  #
47133
+ # @!attribute [rw] sse_specification
47134
+ # Describes the options in use for server side encryption.
47135
+ # @return [Types::VerifiedAccessSseSpecificationResponse]
47136
+ #
47103
47137
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyResult AWS API Documentation
47104
47138
  #
47105
47139
  class ModifyVerifiedAccessGroupPolicyResult < Struct.new(
47106
47140
  :policy_enabled,
47107
- :policy_document)
47141
+ :policy_document,
47142
+ :sse_specification)
47108
47143
  SENSITIVE = []
47109
47144
  include Aws::Structure
47110
47145
  end
@@ -47346,6 +47381,10 @@ module Aws::EC2
47346
47381
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
47347
47382
  # @return [String]
47348
47383
  #
47384
+ # @!attribute [rw] sse_specification
47385
+ # Options for server side encryption.
47386
+ # @return [Types::VerifiedAccessSseSpecificationRequest]
47387
+ #
47349
47388
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderRequest AWS API Documentation
47350
47389
  #
47351
47390
  class ModifyVerifiedAccessTrustProviderRequest < Struct.new(
@@ -47353,7 +47392,8 @@ module Aws::EC2
47353
47392
  :oidc_options,
47354
47393
  :description,
47355
47394
  :dry_run,
47356
- :client_token)
47395
+ :client_token,
47396
+ :sse_specification)
47357
47397
  SENSITIVE = []
47358
47398
  include Aws::Structure
47359
47399
  end
@@ -63376,6 +63416,10 @@ module Aws::EC2
63376
63416
  # The tags.
63377
63417
  # @return [Array<Types::Tag>]
63378
63418
  #
63419
+ # @!attribute [rw] sse_specification
63420
+ # Describes the options in use for server side encryption.
63421
+ # @return [Types::VerifiedAccessSseSpecificationResponse]
63422
+ #
63379
63423
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessEndpoint AWS API Documentation
63380
63424
  #
63381
63425
  class VerifiedAccessEndpoint < Struct.new(
@@ -63396,7 +63440,8 @@ module Aws::EC2
63396
63440
  :creation_time,
63397
63441
  :last_updated_time,
63398
63442
  :deletion_time,
63399
- :tags)
63443
+ :tags,
63444
+ :sse_specification)
63400
63445
  SENSITIVE = []
63401
63446
  include Aws::Structure
63402
63447
  end
@@ -63512,6 +63557,10 @@ module Aws::EC2
63512
63557
  # The tags.
63513
63558
  # @return [Array<Types::Tag>]
63514
63559
  #
63560
+ # @!attribute [rw] sse_specification
63561
+ # Describes the options in use for server side encryption.
63562
+ # @return [Types::VerifiedAccessSseSpecificationResponse]
63563
+ #
63515
63564
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessGroup AWS API Documentation
63516
63565
  #
63517
63566
  class VerifiedAccessGroup < Struct.new(
@@ -63523,7 +63572,8 @@ module Aws::EC2
63523
63572
  :creation_time,
63524
63573
  :last_updated_time,
63525
63574
  :deletion_time,
63526
- :tags)
63575
+ :tags,
63576
+ :sse_specification)
63527
63577
  SENSITIVE = []
63528
63578
  include Aws::Structure
63529
63579
  end
@@ -63555,8 +63605,8 @@ module Aws::EC2
63555
63605
  # @return [Array<Types::Tag>]
63556
63606
  #
63557
63607
  # @!attribute [rw] fips_enabled
63558
- # Describes if support for Federal Information Processing Standards
63559
- # (FIPS) is enabled on the instance.
63608
+ # Describes whether support for Federal Information Processing
63609
+ # Standards (FIPS) is enabled on the instance.
63560
63610
  # @return [Boolean]
63561
63611
  #
63562
63612
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessInstance AWS API Documentation
@@ -63832,6 +63882,53 @@ module Aws::EC2
63832
63882
  include Aws::Structure
63833
63883
  end
63834
63884
 
63885
+ # Verified Access provides server side encryption by default to data at
63886
+ # rest using Amazon Web Services-owned KMS keys. You also have the
63887
+ # option of using customer managed KMS keys, which can be specified
63888
+ # using the options below.
63889
+ #
63890
+ # @!attribute [rw] customer_managed_key_enabled
63891
+ # Enable or disable the use of customer managed KMS keys for server
63892
+ # side encryption.
63893
+ #
63894
+ # Valid values: `True` \| `False`
63895
+ # @return [Boolean]
63896
+ #
63897
+ # @!attribute [rw] kms_key_arn
63898
+ # The ARN of the KMS key.
63899
+ # @return [String]
63900
+ #
63901
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessSseSpecificationRequest AWS API Documentation
63902
+ #
63903
+ class VerifiedAccessSseSpecificationRequest < Struct.new(
63904
+ :customer_managed_key_enabled,
63905
+ :kms_key_arn)
63906
+ SENSITIVE = []
63907
+ include Aws::Structure
63908
+ end
63909
+
63910
+ # Describes the options in use for server side encryption.
63911
+ #
63912
+ # @!attribute [rw] customer_managed_key_enabled
63913
+ # Describes the use of customer managed KMS keys for server side
63914
+ # encryption.
63915
+ #
63916
+ # Valid values: `True` \| `False`
63917
+ # @return [Boolean]
63918
+ #
63919
+ # @!attribute [rw] kms_key_arn
63920
+ # Describes the ARN of the KMS key.
63921
+ # @return [String]
63922
+ #
63923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessSseSpecificationResponse AWS API Documentation
63924
+ #
63925
+ class VerifiedAccessSseSpecificationResponse < Struct.new(
63926
+ :customer_managed_key_enabled,
63927
+ :kms_key_arn)
63928
+ SENSITIVE = []
63929
+ include Aws::Structure
63930
+ end
63931
+
63835
63932
  # Describes a Verified Access trust provider.
63836
63933
  #
63837
63934
  # @!attribute [rw] verified_access_trust_provider_id
@@ -63880,6 +63977,10 @@ module Aws::EC2
63880
63977
  # The tags.
63881
63978
  # @return [Array<Types::Tag>]
63882
63979
  #
63980
+ # @!attribute [rw] sse_specification
63981
+ # Describes the options in use for server side encryption.
63982
+ # @return [Types::VerifiedAccessSseSpecificationResponse]
63983
+ #
63883
63984
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessTrustProvider AWS API Documentation
63884
63985
  #
63885
63986
  class VerifiedAccessTrustProvider < Struct.new(
@@ -63893,7 +63994,8 @@ module Aws::EC2
63893
63994
  :policy_reference_name,
63894
63995
  :creation_time,
63895
63996
  :last_updated_time,
63896
- :tags)
63997
+ :tags,
63998
+ :sse_specification)
63897
63999
  SENSITIVE = []
63898
64000
  include Aws::Structure
63899
64001
  end
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.409.0'
79
+ GEM_VERSION = '1.410.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.409.0
4
+ version: 1.410.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-09-27 00:00:00.000000000 Z
11
+ date: 2023-09-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4