aws-sdk-ec2 1.626.0 → 1.628.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.
@@ -535,6 +535,111 @@ module Aws::EC2
535
535
  include Aws::Structure
536
536
  end
537
537
 
538
+ # Describes the account-level VPC Encryption Control configuration,
539
+ # including its mode, state, and exclusions.
540
+ #
541
+ # For more information, see [Enforce VPC encryption in transit][1] in
542
+ # the *Amazon VPC User Guide*.
543
+ #
544
+ #
545
+ #
546
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-encryption-controls.html
547
+ #
548
+ # @!attribute [rw] state
549
+ # The current state of the account-level VPC Encryption Control
550
+ # configuration.
551
+ # @return [String]
552
+ #
553
+ # @!attribute [rw] mode
554
+ # The encryption mode for the account-level VPC Encryption Control
555
+ # configuration.
556
+ # @return [String]
557
+ #
558
+ # @!attribute [rw] exclusions
559
+ # Information about the traffic exclusions for the account-level VPC
560
+ # Encryption Control configuration.
561
+ # @return [Types::AccountVpcEncryptionControlExclusions]
562
+ #
563
+ # @!attribute [rw] managed_by
564
+ # The entity that manages the account-level VPC Encryption Control
565
+ # configuration.
566
+ # @return [String]
567
+ #
568
+ # @!attribute [rw] last_update_timestamp
569
+ # The date and time when the account-level VPC Encryption Control
570
+ # configuration was last updated.
571
+ # @return [Time]
572
+ #
573
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AccountVpcEncryptionControl AWS API Documentation
574
+ #
575
+ class AccountVpcEncryptionControl < Struct.new(
576
+ :state,
577
+ :mode,
578
+ :exclusions,
579
+ :managed_by,
580
+ :last_update_timestamp)
581
+ SENSITIVE = []
582
+ include Aws::Structure
583
+ end
584
+
585
+ # Describes the exclusion configurations for the various resource types
586
+ # in the account-level VPC Encryption Control configuration.
587
+ #
588
+ # For more information, see [Enforce VPC encryption in transit][1] in
589
+ # the *Amazon VPC User Guide*.
590
+ #
591
+ #
592
+ #
593
+ # [1]: https://docs.aws.amazon.com/vpc/latest/userguide/vpc-encryption-controls.html
594
+ #
595
+ # @!attribute [rw] internet_gateway
596
+ # The exclusion configuration for internet gateway resource.
597
+ # @return [String]
598
+ #
599
+ # @!attribute [rw] egress_only_internet_gateway
600
+ # The exclusion configuration for egress-only internet gateway
601
+ # resource.
602
+ # @return [String]
603
+ #
604
+ # @!attribute [rw] nat_gateway
605
+ # The exclusion configuration for NAT gateway resource.
606
+ # @return [String]
607
+ #
608
+ # @!attribute [rw] virtual_private_gateway
609
+ # The exclusion configuration for virtual private gateway resource.
610
+ # @return [String]
611
+ #
612
+ # @!attribute [rw] vpc_peering
613
+ # The exclusion configuration for VPC peering connection resource.
614
+ # @return [String]
615
+ #
616
+ # @!attribute [rw] lambda
617
+ # The exclusion configuration for Lambda service.
618
+ # @return [String]
619
+ #
620
+ # @!attribute [rw] vpc_lattice
621
+ # The exclusion configuration for VPC Lattice service.
622
+ # @return [String]
623
+ #
624
+ # @!attribute [rw] elastic_file_system
625
+ # The exclusion configuration for Elastic File System service.
626
+ # @return [String]
627
+ #
628
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AccountVpcEncryptionControlExclusions AWS API Documentation
629
+ #
630
+ class AccountVpcEncryptionControlExclusions < Struct.new(
631
+ :internet_gateway,
632
+ :egress_only_internet_gateway,
633
+ :nat_gateway,
634
+ :virtual_private_gateway,
635
+ :vpc_peering,
636
+ :lambda,
637
+ :vpc_lattice,
638
+ :elastic_file_system)
639
+ SENSITIVE = []
640
+ include Aws::Structure
641
+ end
642
+
538
643
  # Describes a running instance in a Spot Fleet.
539
644
  #
540
645
  # @!attribute [rw] instance_id
@@ -1228,6 +1333,10 @@ module Aws::EC2
1228
1333
  # The ID of the Availability Zone.
1229
1334
  # @return [String]
1230
1335
  #
1336
+ # @!attribute [rw] cpu_options
1337
+ # The CPU configuration options to apply to the Dedicated Host.
1338
+ # @return [Types::HostCpuOptionsRequest]
1339
+ #
1231
1340
  # @!attribute [rw] auto_placement
1232
1341
  # Indicates whether the host accepts any untargeted instance launches
1233
1342
  # that match its instance type configuration, or if it only accepts
@@ -1287,6 +1396,7 @@ module Aws::EC2
1287
1396
  :host_maintenance,
1288
1397
  :asset_ids,
1289
1398
  :availability_zone_id,
1399
+ :cpu_options,
1290
1400
  :auto_placement,
1291
1401
  :client_token,
1292
1402
  :instance_type,
@@ -21723,6 +21833,34 @@ module Aws::EC2
21723
21833
  include Aws::Structure
21724
21834
  end
21725
21835
 
21836
+ # @!attribute [rw] dry_run
21837
+ # Checks whether you have the required permissions for the action,
21838
+ # without actually making the request, and provides an error response.
21839
+ # If you have the required permissions, the error response is
21840
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
21841
+ # @return [Boolean]
21842
+ #
21843
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountVpcEncryptionControlRequest AWS API Documentation
21844
+ #
21845
+ class DescribeAccountVpcEncryptionControlRequest < Struct.new(
21846
+ :dry_run)
21847
+ SENSITIVE = []
21848
+ include Aws::Structure
21849
+ end
21850
+
21851
+ # @!attribute [rw] account_vpc_encryption_control
21852
+ # Information about the account-level VPC Encryption Control
21853
+ # configuration.
21854
+ # @return [Types::AccountVpcEncryptionControl]
21855
+ #
21856
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAccountVpcEncryptionControlResult AWS API Documentation
21857
+ #
21858
+ class DescribeAccountVpcEncryptionControlResult < Struct.new(
21859
+ :account_vpc_encryption_control)
21860
+ SENSITIVE = []
21861
+ include Aws::Structure
21862
+ end
21863
+
21726
21864
  # @!attribute [rw] allocation_ids
21727
21865
  # The allocation IDs of Elastic IP addresses.
21728
21866
  # @return [Array<String>]
@@ -34996,6 +35134,13 @@ module Aws::EC2
34996
35134
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
34997
35135
  # @return [Integer]
34998
35136
  #
35137
+ # @!attribute [rw] include_managed_resources
35138
+ # Indicates whether to include managed resources in the output. If
35139
+ # this parameter is set to `true`, the output includes resources that
35140
+ # are managed by Amazon Web Services services, even if managed
35141
+ # resource visibility is set to hidden.
35142
+ # @return [Boolean]
35143
+ #
34999
35144
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVolumesModificationsRequest AWS API Documentation
35000
35145
  #
35001
35146
  class DescribeVolumesModificationsRequest < Struct.new(
@@ -35003,7 +35148,8 @@ module Aws::EC2
35003
35148
  :volume_ids,
35004
35149
  :filters,
35005
35150
  :next_token,
35006
- :max_results)
35151
+ :max_results,
35152
+ :include_managed_resources)
35007
35153
  SENSITIVE = []
35008
35154
  include Aws::Structure
35009
35155
  end
@@ -48004,6 +48150,12 @@ module Aws::EC2
48004
48150
  # allocated.
48005
48151
  # @return [String]
48006
48152
  #
48153
+ # @!attribute [rw] cpu_options
48154
+ # The CPU options for the Dedicated Host, including AMD Secure
48155
+ # Encrypted Virtualization-Secure Nested Paging (AMD SEV-SNP)
48156
+ # settings.
48157
+ # @return [Types::HostCpuOptions]
48158
+ #
48007
48159
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/Host AWS API Documentation
48008
48160
  #
48009
48161
  class Host < Struct.new(
@@ -48026,7 +48178,43 @@ module Aws::EC2
48026
48178
  :member_of_service_linked_resource_group,
48027
48179
  :outpost_arn,
48028
48180
  :host_maintenance,
48029
- :asset_id)
48181
+ :asset_id,
48182
+ :cpu_options)
48183
+ SENSITIVE = []
48184
+ include Aws::Structure
48185
+ end
48186
+
48187
+ # Contains the CPU options for a Dedicated Host, including AMD Secure
48188
+ # Encrypted Virtualization-Secure Nested Paging (AMD SEV-SNP) settings.
48189
+ #
48190
+ # @!attribute [rw] amd_sev_snp
48191
+ # Specifies whether AMD Secure Encrypted Virtualization-Secure Nested
48192
+ # Paging (AMD SEV-SNP) is enabled or disabled for the Dedicated Host.
48193
+ # If you don't specify a value, AMD SEV-SNP is `disabled`.
48194
+ # @return [String]
48195
+ #
48196
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostCpuOptions AWS API Documentation
48197
+ #
48198
+ class HostCpuOptions < Struct.new(
48199
+ :amd_sev_snp)
48200
+ SENSITIVE = []
48201
+ include Aws::Structure
48202
+ end
48203
+
48204
+ # Contains the CPU configuration options for a Dedicated Host allocation
48205
+ # request. Options include AMD Secure Encrypted Virtualization-Secure
48206
+ # Nested Paging (AMD SEV-SNP) settings.
48207
+ #
48208
+ # @!attribute [rw] amd_sev_snp
48209
+ # Specifies whether AMD Secure Encrypted Virtualization-Secure Nested
48210
+ # Paging (AMD SEV-SNP) is enabled or disabled for the Dedicated Host.
48211
+ # If you don't specify a value, AMD SEV-SNP is `disabled`.
48212
+ # @return [String]
48213
+ #
48214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/HostCpuOptionsRequest AWS API Documentation
48215
+ #
48216
+ class HostCpuOptionsRequest < Struct.new(
48217
+ :amd_sev_snp)
48030
48218
  SENSITIVE = []
48031
48219
  include Aws::Structure
48032
48220
  end
@@ -60998,6 +61186,88 @@ module Aws::EC2
60998
61186
  include Aws::Structure
60999
61187
  end
61000
61188
 
61189
+ # @!attribute [rw] dry_run
61190
+ # Checks whether you have the required permissions for the action,
61191
+ # without actually making the request, and provides an error response.
61192
+ # If you have the required permissions, the error response is
61193
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
61194
+ # @return [Boolean]
61195
+ #
61196
+ # @!attribute [rw] mode
61197
+ # The encryption mode for the account encryption control
61198
+ # configuration.
61199
+ # @return [String]
61200
+ #
61201
+ # @!attribute [rw] internet_gateway
61202
+ # Specifies whether to exclude internet gateway resource from
61203
+ # account-level encryption enforcement.
61204
+ # @return [String]
61205
+ #
61206
+ # @!attribute [rw] egress_only_internet_gateway
61207
+ # Specifies whether to exclude egress-only internet gateway resource
61208
+ # from account-level encryption enforcement.
61209
+ # @return [String]
61210
+ #
61211
+ # @!attribute [rw] nat_gateway
61212
+ # Specifies whether to exclude NAT gateway resource from account-level
61213
+ # encryption enforcement.
61214
+ # @return [String]
61215
+ #
61216
+ # @!attribute [rw] virtual_private_gateway
61217
+ # Specifies whether to exclude virtual private gateway resource from
61218
+ # account-level encryption enforcement.
61219
+ # @return [String]
61220
+ #
61221
+ # @!attribute [rw] vpc_peering
61222
+ # Specifies whether to exclude VPC peering connection resource from
61223
+ # account-level encryption enforcement.
61224
+ # @return [String]
61225
+ #
61226
+ # @!attribute [rw] lambda
61227
+ # Specifies whether to exclude Lambda service from account-level
61228
+ # encryption enforcement.
61229
+ # @return [String]
61230
+ #
61231
+ # @!attribute [rw] vpc_lattice
61232
+ # Specifies whether to exclude VPC Lattice service from account-level
61233
+ # encryption enforcement.
61234
+ # @return [String]
61235
+ #
61236
+ # @!attribute [rw] elastic_file_system
61237
+ # Specifies whether to exclude Elastic File System service from
61238
+ # account-level encryption enforcement.
61239
+ # @return [String]
61240
+ #
61241
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyAccountVpcEncryptionControlRequest AWS API Documentation
61242
+ #
61243
+ class ModifyAccountVpcEncryptionControlRequest < Struct.new(
61244
+ :dry_run,
61245
+ :mode,
61246
+ :internet_gateway,
61247
+ :egress_only_internet_gateway,
61248
+ :nat_gateway,
61249
+ :virtual_private_gateway,
61250
+ :vpc_peering,
61251
+ :lambda,
61252
+ :vpc_lattice,
61253
+ :elastic_file_system)
61254
+ SENSITIVE = []
61255
+ include Aws::Structure
61256
+ end
61257
+
61258
+ # @!attribute [rw] account_vpc_encryption_control
61259
+ # Information about the account-level VPC Encryption Control
61260
+ # configuration.
61261
+ # @return [Types::AccountVpcEncryptionControl]
61262
+ #
61263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyAccountVpcEncryptionControlResult AWS API Documentation
61264
+ #
61265
+ class ModifyAccountVpcEncryptionControlResult < Struct.new(
61266
+ :account_vpc_encryption_control)
61267
+ SENSITIVE = []
61268
+ include Aws::Structure
61269
+ end
61270
+
61001
61271
  # @!attribute [rw] allocation_id
61002
61272
  # \[EC2-VPC\] The allocation ID.
61003
61273
  # @return [String]
@@ -65943,6 +66213,60 @@ module Aws::EC2
65943
66213
  include Aws::Structure
65944
66214
  end
65945
66215
 
66216
+ # @!attribute [rw] dry_run
66217
+ # Checks whether you have the required permissions for the action,
66218
+ # without actually making the request, and provides an error response.
66219
+ # If you have the required permissions, the error response is
66220
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
66221
+ # @return [Boolean]
66222
+ #
66223
+ # @!attribute [rw] service_id
66224
+ # The ID of the VPC endpoint service.
66225
+ # @return [String]
66226
+ #
66227
+ # @!attribute [rw] vpc_endpoint_id
66228
+ # The ID of the VPC endpoint.
66229
+ # @return [String]
66230
+ #
66231
+ # @!attribute [rw] payer_responsibility
66232
+ # The Amazon Web Services account to which the usage of VPC endpoint
66233
+ # is charged.
66234
+ # @return [String]
66235
+ #
66236
+ # @!attribute [rw] scope
66237
+ # The scope of usage/charges for which the billing account is being
66238
+ # modified.
66239
+ # @return [String]
66240
+ #
66241
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointPayerResponsibilityRequest AWS API Documentation
66242
+ #
66243
+ class ModifyVpcEndpointPayerResponsibilityRequest < Struct.new(
66244
+ :dry_run,
66245
+ :service_id,
66246
+ :vpc_endpoint_id,
66247
+ :payer_responsibility,
66248
+ :scope)
66249
+ SENSITIVE = []
66250
+ include Aws::Structure
66251
+ end
66252
+
66253
+ # @!attribute [rw] vpc_endpoint_id
66254
+ # The ID of the VPC endpoint.
66255
+ # @return [String]
66256
+ #
66257
+ # @!attribute [rw] payer_responsibilities
66258
+ # The payer responsibility settings for the VPC endpoint.
66259
+ # @return [Array<Types::PayerResponsibilityEntry>]
66260
+ #
66261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointPayerResponsibilityResult AWS API Documentation
66262
+ #
66263
+ class ModifyVpcEndpointPayerResponsibilityResult < Struct.new(
66264
+ :vpc_endpoint_id,
66265
+ :payer_responsibilities)
66266
+ SENSITIVE = []
66267
+ include Aws::Structure
66268
+ end
66269
+
65946
66270
  # @!attribute [rw] dry_run
65947
66271
  # Checks whether you have the required permissions for the action,
65948
66272
  # without actually making the request, and provides an error response.
@@ -69186,6 +69510,25 @@ module Aws::EC2
69186
69510
  include Aws::Structure
69187
69511
  end
69188
69512
 
69513
+ # Describes a payer responsibility setting for a VPC endpoint.
69514
+ #
69515
+ # @!attribute [rw] scope
69516
+ # The scope of usage/charges.
69517
+ # @return [String]
69518
+ #
69519
+ # @!attribute [rw] payer_responsibility_type
69520
+ # The Amazon Web Services account to which the usage is charged.
69521
+ # @return [String]
69522
+ #
69523
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PayerResponsibilityEntry AWS API Documentation
69524
+ #
69525
+ class PayerResponsibilityEntry < Struct.new(
69526
+ :scope,
69527
+ :payer_responsibility_type)
69528
+ SENSITIVE = []
69529
+ include Aws::Structure
69530
+ end
69531
+
69189
69532
  # Describes the data that identifies an Amazon FPGA image (AFI) on the
69190
69533
  # PCI bus.
69191
69534
  #
@@ -86540,6 +86883,10 @@ module Aws::EC2
86540
86883
  # The modification completion or failure time.
86541
86884
  # @return [Time]
86542
86885
  #
86886
+ # @!attribute [rw] operator
86887
+ # The service provider that manages the resource.
86888
+ # @return [Types::OperatorResponse]
86889
+ #
86543
86890
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VolumeModification AWS API Documentation
86544
86891
  #
86545
86892
  class VolumeModification < Struct.new(
@@ -86558,7 +86905,8 @@ module Aws::EC2
86558
86905
  :original_multi_attach_enabled,
86559
86906
  :progress,
86560
86907
  :start_time,
86561
- :end_time)
86908
+ :end_time,
86909
+ :operator)
86562
86910
  SENSITIVE = []
86563
86911
  include Aws::Structure
86564
86912
  end
@@ -87539,6 +87887,10 @@ module Aws::EC2
87539
87887
  # The Region where the service is hosted.
87540
87888
  # @return [String]
87541
87889
  #
87890
+ # @!attribute [rw] payer_responsibilities
87891
+ # The payer responsibility settings for the endpoint.
87892
+ # @return [Array<Types::PayerResponsibilityEntry>]
87893
+ #
87542
87894
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
87543
87895
  #
87544
87896
  class VpcEndpoint < Struct.new(
@@ -87566,7 +87918,8 @@ module Aws::EC2
87566
87918
  :failure_reason,
87567
87919
  :service_network_arn,
87568
87920
  :resource_configuration_arn,
87569
- :service_region)
87921
+ :service_region,
87922
+ :payer_responsibilities)
87570
87923
  SENSITIVE = []
87571
87924
  include Aws::Structure
87572
87925
  end
@@ -87697,6 +88050,10 @@ module Aws::EC2
87697
88050
  # The Region of the endpoint.
87698
88051
  # @return [String]
87699
88052
  #
88053
+ # @!attribute [rw] payer_responsibilities
88054
+ # The payer responsibility settings for the endpoint.
88055
+ # @return [Array<Types::PayerResponsibilityEntry>]
88056
+ #
87700
88057
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpointConnection AWS API Documentation
87701
88058
  #
87702
88059
  class VpcEndpointConnection < Struct.new(
@@ -87711,7 +88068,8 @@ module Aws::EC2
87711
88068
  :ip_address_type,
87712
88069
  :vpc_endpoint_connection_id,
87713
88070
  :tags,
87714
- :vpc_endpoint_region)
88071
+ :vpc_endpoint_region,
88072
+ :payer_responsibilities)
87715
88073
  SENSITIVE = []
87716
88074
  include Aws::Structure
87717
88075
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.626.0'
81
+ GEM_VERSION = '1.628.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -267,6 +267,9 @@ module Aws
267
267
  ?host_maintenance: ("on" | "off"),
268
268
  ?asset_ids: Array[::String],
269
269
  ?availability_zone_id: ::String,
270
+ ?cpu_options: {
271
+ amd_sev_snp: ("enabled" | "disabled")?
272
+ },
270
273
  ?auto_placement: ("on" | "off"),
271
274
  ?client_token: ::String,
272
275
  ?instance_type: ::String,
@@ -5232,6 +5235,16 @@ module Aws
5232
5235
  ) -> _DescribeAccountAttributesResponseSuccess
5233
5236
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountAttributesResponseSuccess
5234
5237
 
5238
+ interface _DescribeAccountVpcEncryptionControlResponseSuccess
5239
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAccountVpcEncryptionControlResult]
5240
+ def account_vpc_encryption_control: () -> Types::AccountVpcEncryptionControl
5241
+ end
5242
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#describe_account_vpc_encryption_control-instance_method
5243
+ def describe_account_vpc_encryption_control: (
5244
+ ?dry_run: bool
5245
+ ) -> _DescribeAccountVpcEncryptionControlResponseSuccess
5246
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAccountVpcEncryptionControlResponseSuccess
5247
+
5235
5248
  interface _DescribeAddressTransfersResponseSuccess
5236
5249
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAddressTransfersResult]
5237
5250
  def address_transfers: () -> ::Array[Types::AddressTransfer]
@@ -8499,7 +8512,8 @@ module Aws
8499
8512
  }
8500
8513
  ],
8501
8514
  ?next_token: ::String,
8502
- ?max_results: ::Integer
8515
+ ?max_results: ::Integer,
8516
+ ?include_managed_resources: bool
8503
8517
  ) -> _DescribeVolumesModificationsResponseSuccess
8504
8518
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVolumesModificationsResponseSuccess
8505
8519
 
@@ -11193,6 +11207,25 @@ module Aws
11193
11207
  ) -> _LockSnapshotResponseSuccess
11194
11208
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _LockSnapshotResponseSuccess
11195
11209
 
11210
+ interface _ModifyAccountVpcEncryptionControlResponseSuccess
11211
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyAccountVpcEncryptionControlResult]
11212
+ def account_vpc_encryption_control: () -> Types::AccountVpcEncryptionControl
11213
+ end
11214
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_account_vpc_encryption_control-instance_method
11215
+ def modify_account_vpc_encryption_control: (
11216
+ ?dry_run: bool,
11217
+ ?mode: ("unmanaged" | "attempt-monitor" | "attempt-enforce"),
11218
+ ?internet_gateway: ("enable" | "disable"),
11219
+ ?egress_only_internet_gateway: ("enable" | "disable"),
11220
+ ?nat_gateway: ("enable" | "disable"),
11221
+ ?virtual_private_gateway: ("enable" | "disable"),
11222
+ ?vpc_peering: ("enable" | "disable"),
11223
+ ?lambda: ("enable" | "disable"),
11224
+ ?vpc_lattice: ("enable" | "disable"),
11225
+ ?elastic_file_system: ("enable" | "disable")
11226
+ ) -> _ModifyAccountVpcEncryptionControlResponseSuccess
11227
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyAccountVpcEncryptionControlResponseSuccess
11228
+
11196
11229
  interface _ModifyAddressAttributeResponseSuccess
11197
11230
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyAddressAttributeResult]
11198
11231
  def address: () -> Types::AddressAttribute
@@ -12556,6 +12589,21 @@ module Aws
12556
12589
  ) -> _ModifyVpcEndpointConnectionNotificationResponseSuccess
12557
12590
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpcEndpointConnectionNotificationResponseSuccess
12558
12591
 
12592
+ interface _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12593
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyVpcEndpointPayerResponsibilityResult]
12594
+ def vpc_endpoint_id: () -> ::String
12595
+ def payer_responsibilities: () -> ::Array[Types::PayerResponsibilityEntry]
12596
+ end
12597
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_vpc_endpoint_payer_responsibility-instance_method
12598
+ def modify_vpc_endpoint_payer_responsibility: (
12599
+ ?dry_run: bool,
12600
+ ?service_id: ::String,
12601
+ vpc_endpoint_id: ::String,
12602
+ payer_responsibility: ("vpc-endpoint-account" | "vpc-endpoint-service-account"),
12603
+ scope: ("vpc-endpoint-charges")
12604
+ ) -> _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12605
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12606
+
12559
12607
  interface _ModifyVpcEndpointServiceConfigurationResponseSuccess
12560
12608
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyVpcEndpointServiceConfigurationResult]
12561
12609
  def return: () -> bool