aws-sdk-ec2 1.626.0 → 1.627.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: fe80518425a757a7441ea06da0fb746fc830052b557237b4c922bbbc36894db9
4
- data.tar.gz: 949d7a63d83b12b1833fd1f93f5e268466387eceefecb9a6e7df758275bf2ead
3
+ metadata.gz: c0121a6ab2ff430ed6203db816eafd2bd51aac1c464d99822634e7062217e590
4
+ data.tar.gz: ca6bf4efb42ef07012558ea2b1d8ad127c974391cb70ab06a1db23de22e2809d
5
5
  SHA512:
6
- metadata.gz: 74b598c69faaf88f26ee2e1fbcbfc8a9b12202261f59c241027a5604027de4d111afd59acb0cb3801b530248ec6aefca710ae61a751872bf6d6161a0dc541176
7
- data.tar.gz: 9ccdce605c361d542af531e120bf4ac6bc450a2f19599140aae91ce67b5f052a336c300cff30fc226d0ce05314315453678474ea93c00bac4ce6c83c8eb1611f
6
+ metadata.gz: e62d8552d66451ba039217815982c7647542ea728b0a5829c979f66cf015c19af75dc2a883c09f7055dbf906169e65ea4a45a27cc2ec044cf1b4047c23b9b091
7
+ data.tar.gz: 403ec550b1350919a4a5c82653efd5fd93d060f7fcce70394743a53edf7c8821ff4ae4601eaa2dfa18089887cc1f81e52989ea2576b5cc5176ceee2de47e1360
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.627.0 (2026-06-30)
5
+ ------------------
6
+
7
+ * Feature - Adds ModifyVpcEndpointPayerResponsibility API, which enables VPC endpoint service owners to modify the billing account for VPC endpoint usage charges at the individual endpoint level
8
+
4
9
  1.626.0 (2026-06-29)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.626.0
1
+ 1.627.0
@@ -18890,6 +18890,9 @@ module Aws::EC2
18890
18890
  # resp.vpc_endpoint.service_network_arn #=> String
18891
18891
  # resp.vpc_endpoint.resource_configuration_arn #=> String
18892
18892
  # resp.vpc_endpoint.service_region #=> String
18893
+ # resp.vpc_endpoint.payer_responsibilities #=> Array
18894
+ # resp.vpc_endpoint.payer_responsibilities[0].scope #=> String, one of "vpc-endpoint-charges"
18895
+ # resp.vpc_endpoint.payer_responsibilities[0].payer_responsibility_type #=> String, one of "vpc-endpoint-account", "vpc-endpoint-service-account"
18893
18896
  # resp.client_token #=> String
18894
18897
  #
18895
18898
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint AWS API Documentation
@@ -46565,6 +46568,9 @@ module Aws::EC2
46565
46568
  # resp.vpc_endpoint_connections[0].tags[0].key #=> String
46566
46569
  # resp.vpc_endpoint_connections[0].tags[0].value #=> String
46567
46570
  # resp.vpc_endpoint_connections[0].vpc_endpoint_region #=> String
46571
+ # resp.vpc_endpoint_connections[0].payer_responsibilities #=> Array
46572
+ # resp.vpc_endpoint_connections[0].payer_responsibilities[0].scope #=> String, one of "vpc-endpoint-charges"
46573
+ # resp.vpc_endpoint_connections[0].payer_responsibilities[0].payer_responsibility_type #=> String, one of "vpc-endpoint-account", "vpc-endpoint-service-account"
46568
46574
  # resp.next_token #=> String
46569
46575
  #
46570
46576
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
@@ -47013,6 +47019,9 @@ module Aws::EC2
47013
47019
  # resp.vpc_endpoints[0].service_network_arn #=> String
47014
47020
  # resp.vpc_endpoints[0].resource_configuration_arn #=> String
47015
47021
  # resp.vpc_endpoints[0].service_region #=> String
47022
+ # resp.vpc_endpoints[0].payer_responsibilities #=> Array
47023
+ # resp.vpc_endpoints[0].payer_responsibilities[0].scope #=> String, one of "vpc-endpoint-charges"
47024
+ # resp.vpc_endpoints[0].payer_responsibilities[0].payer_responsibility_type #=> String, one of "vpc-endpoint-account", "vpc-endpoint-service-account"
47016
47025
  # resp.next_token #=> String
47017
47026
  #
47018
47027
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints AWS API Documentation
@@ -64643,6 +64652,59 @@ module Aws::EC2
64643
64652
  req.send_request(options)
64644
64653
  end
64645
64654
 
64655
+ # Modifies the billing account for VPC endpoint usage/charges.
64656
+ #
64657
+ # @option params [Boolean] :dry_run
64658
+ # Checks whether you have the required permissions for the action,
64659
+ # without actually making the request, and provides an error response.
64660
+ # If you have the required permissions, the error response is
64661
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
64662
+ #
64663
+ # @option params [String] :service_id
64664
+ # The ID of the VPC endpoint service.
64665
+ #
64666
+ # @option params [required, String] :vpc_endpoint_id
64667
+ # The ID of the VPC endpoint.
64668
+ #
64669
+ # @option params [required, String] :payer_responsibility
64670
+ # The Amazon Web Services account to which the usage of VPC endpoint is
64671
+ # charged.
64672
+ #
64673
+ # @option params [required, String] :scope
64674
+ # The scope of usage/charges for which the billing account is being
64675
+ # modified.
64676
+ #
64677
+ # @return [Types::ModifyVpcEndpointPayerResponsibilityResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
64678
+ #
64679
+ # * {Types::ModifyVpcEndpointPayerResponsibilityResult#vpc_endpoint_id #vpc_endpoint_id} => String
64680
+ # * {Types::ModifyVpcEndpointPayerResponsibilityResult#payer_responsibilities #payer_responsibilities} => Array<Types::PayerResponsibilityEntry>
64681
+ #
64682
+ # @example Request syntax with placeholder values
64683
+ #
64684
+ # resp = client.modify_vpc_endpoint_payer_responsibility({
64685
+ # dry_run: false,
64686
+ # service_id: "VpcEndpointServiceId",
64687
+ # vpc_endpoint_id: "VpcEndpointId", # required
64688
+ # payer_responsibility: "vpc-endpoint-account", # required, accepts vpc-endpoint-account, vpc-endpoint-service-account
64689
+ # scope: "vpc-endpoint-charges", # required, accepts vpc-endpoint-charges
64690
+ # })
64691
+ #
64692
+ # @example Response structure
64693
+ #
64694
+ # resp.vpc_endpoint_id #=> String
64695
+ # resp.payer_responsibilities #=> Array
64696
+ # resp.payer_responsibilities[0].scope #=> String, one of "vpc-endpoint-charges"
64697
+ # resp.payer_responsibilities[0].payer_responsibility_type #=> String, one of "vpc-endpoint-account", "vpc-endpoint-service-account"
64698
+ #
64699
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointPayerResponsibility AWS API Documentation
64700
+ #
64701
+ # @overload modify_vpc_endpoint_payer_responsibility(params = {})
64702
+ # @param [Hash] params ({})
64703
+ def modify_vpc_endpoint_payer_responsibility(params = {}, options = {})
64704
+ req = build_request(:modify_vpc_endpoint_payer_responsibility, params)
64705
+ req.send_request(options)
64706
+ end
64707
+
64646
64708
  # Modifies the attributes of the specified VPC endpoint service
64647
64709
  # configuration.
64648
64710
  #
@@ -74113,7 +74175,7 @@ module Aws::EC2
74113
74175
  tracer: tracer
74114
74176
  )
74115
74177
  context[:gem_name] = 'aws-sdk-ec2'
74116
- context[:gem_version] = '1.626.0'
74178
+ context[:gem_version] = '1.627.0'
74117
74179
  Seahorse::Client::Request.new(handlers, context)
74118
74180
  end
74119
74181
 
@@ -2812,6 +2812,8 @@ module Aws::EC2
2812
2812
  ModifyVpcEncryptionControlResult = Shapes::StructureShape.new(name: 'ModifyVpcEncryptionControlResult')
2813
2813
  ModifyVpcEndpointConnectionNotificationRequest = Shapes::StructureShape.new(name: 'ModifyVpcEndpointConnectionNotificationRequest')
2814
2814
  ModifyVpcEndpointConnectionNotificationResult = Shapes::StructureShape.new(name: 'ModifyVpcEndpointConnectionNotificationResult')
2815
+ ModifyVpcEndpointPayerResponsibilityRequest = Shapes::StructureShape.new(name: 'ModifyVpcEndpointPayerResponsibilityRequest')
2816
+ ModifyVpcEndpointPayerResponsibilityResult = Shapes::StructureShape.new(name: 'ModifyVpcEndpointPayerResponsibilityResult')
2815
2817
  ModifyVpcEndpointRequest = Shapes::StructureShape.new(name: 'ModifyVpcEndpointRequest')
2816
2818
  ModifyVpcEndpointResult = Shapes::StructureShape.new(name: 'ModifyVpcEndpointResult')
2817
2819
  ModifyVpcEndpointServiceConfigurationRequest = Shapes::StructureShape.new(name: 'ModifyVpcEndpointServiceConfigurationRequest')
@@ -2977,6 +2979,10 @@ module Aws::EC2
2977
2979
  PathStatement = Shapes::StructureShape.new(name: 'PathStatement')
2978
2980
  PathStatementRequest = Shapes::StructureShape.new(name: 'PathStatementRequest')
2979
2981
  PayerResponsibility = Shapes::StringShape.new(name: 'PayerResponsibility')
2982
+ PayerResponsibilityEntry = Shapes::StructureShape.new(name: 'PayerResponsibilityEntry')
2983
+ PayerResponsibilityScope = Shapes::StringShape.new(name: 'PayerResponsibilityScope')
2984
+ PayerResponsibilitySet = Shapes::ListShape.new(name: 'PayerResponsibilitySet')
2985
+ PayerResponsibilityType = Shapes::StringShape.new(name: 'PayerResponsibilityType')
2980
2986
  PaymentOption = Shapes::StringShape.new(name: 'PaymentOption')
2981
2987
  PciId = Shapes::StructureShape.new(name: 'PciId')
2982
2988
  PeakBandwidthInGbps = Shapes::FloatShape.new(name: 'PeakBandwidthInGbps')
@@ -15341,6 +15347,17 @@ module Aws::EC2
15341
15347
  ModifyVpcEndpointConnectionNotificationResult.add_member(:return_value, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
15342
15348
  ModifyVpcEndpointConnectionNotificationResult.struct_class = Types::ModifyVpcEndpointConnectionNotificationResult
15343
15349
 
15350
+ ModifyVpcEndpointPayerResponsibilityRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
15351
+ ModifyVpcEndpointPayerResponsibilityRequest.add_member(:service_id, Shapes::ShapeRef.new(shape: VpcEndpointServiceId, location_name: "ServiceId"))
15352
+ ModifyVpcEndpointPayerResponsibilityRequest.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, required: true, location_name: "VpcEndpointId"))
15353
+ ModifyVpcEndpointPayerResponsibilityRequest.add_member(:payer_responsibility, Shapes::ShapeRef.new(shape: PayerResponsibilityType, required: true, location_name: "PayerResponsibility"))
15354
+ ModifyVpcEndpointPayerResponsibilityRequest.add_member(:scope, Shapes::ShapeRef.new(shape: PayerResponsibilityScope, required: true, location_name: "Scope"))
15355
+ ModifyVpcEndpointPayerResponsibilityRequest.struct_class = Types::ModifyVpcEndpointPayerResponsibilityRequest
15356
+
15357
+ ModifyVpcEndpointPayerResponsibilityResult.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointId"))
15358
+ ModifyVpcEndpointPayerResponsibilityResult.add_member(:payer_responsibilities, Shapes::ShapeRef.new(shape: PayerResponsibilitySet, location_name: "payerResponsibilitySet"))
15359
+ ModifyVpcEndpointPayerResponsibilityResult.struct_class = Types::ModifyVpcEndpointPayerResponsibilityResult
15360
+
15344
15361
  ModifyVpcEndpointRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
15345
15362
  ModifyVpcEndpointRequest.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, required: true, location_name: "VpcEndpointId"))
15346
15363
  ModifyVpcEndpointRequest.add_member(:reset_policy, Shapes::ShapeRef.new(shape: Boolean, location_name: "ResetPolicy"))
@@ -15987,6 +16004,12 @@ module Aws::EC2
15987
16004
  PathStatementRequest.add_member(:resource_statement, Shapes::ShapeRef.new(shape: ResourceStatementRequest, location_name: "ResourceStatement"))
15988
16005
  PathStatementRequest.struct_class = Types::PathStatementRequest
15989
16006
 
16007
+ PayerResponsibilityEntry.add_member(:scope, Shapes::ShapeRef.new(shape: PayerResponsibilityScope, location_name: "scope"))
16008
+ PayerResponsibilityEntry.add_member(:payer_responsibility_type, Shapes::ShapeRef.new(shape: PayerResponsibilityType, location_name: "payerResponsibilityType"))
16009
+ PayerResponsibilityEntry.struct_class = Types::PayerResponsibilityEntry
16010
+
16011
+ PayerResponsibilitySet.member = Shapes::ShapeRef.new(shape: PayerResponsibilityEntry, location_name: "item")
16012
+
15990
16013
  PciId.add_member(:device_id, Shapes::ShapeRef.new(shape: String, location_name: "DeviceId"))
15991
16014
  PciId.add_member(:vendor_id, Shapes::ShapeRef.new(shape: String, location_name: "VendorId"))
15992
16015
  PciId.add_member(:subsystem_id, Shapes::ShapeRef.new(shape: String, location_name: "SubsystemId"))
@@ -19660,6 +19683,7 @@ module Aws::EC2
19660
19683
  VpcEndpoint.add_member(:service_network_arn, Shapes::ShapeRef.new(shape: ServiceNetworkArn, location_name: "serviceNetworkArn"))
19661
19684
  VpcEndpoint.add_member(:resource_configuration_arn, Shapes::ShapeRef.new(shape: ResourceConfigurationArn, location_name: "resourceConfigurationArn"))
19662
19685
  VpcEndpoint.add_member(:service_region, Shapes::ShapeRef.new(shape: String, location_name: "serviceRegion"))
19686
+ VpcEndpoint.add_member(:payer_responsibilities, Shapes::ShapeRef.new(shape: PayerResponsibilitySet, location_name: "payerResponsibilitySet"))
19663
19687
  VpcEndpoint.struct_class = Types::VpcEndpoint
19664
19688
 
19665
19689
  VpcEndpointAssociation.add_member(:id, Shapes::ShapeRef.new(shape: String, location_name: "id"))
@@ -19690,6 +19714,7 @@ module Aws::EC2
19690
19714
  VpcEndpointConnection.add_member(:vpc_endpoint_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointConnectionId"))
19691
19715
  VpcEndpointConnection.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
19692
19716
  VpcEndpointConnection.add_member(:vpc_endpoint_region, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointRegion"))
19717
+ VpcEndpointConnection.add_member(:payer_responsibilities, Shapes::ShapeRef.new(shape: PayerResponsibilitySet, location_name: "payerResponsibilitySet"))
19693
19718
  VpcEndpointConnection.struct_class = Types::VpcEndpointConnection
19694
19719
 
19695
19720
  VpcEndpointConnectionSet.member = Shapes::ShapeRef.new(shape: VpcEndpointConnection, location_name: "item")
@@ -26340,6 +26365,14 @@ module Aws::EC2
26340
26365
  o.output = Shapes::ShapeRef.new(shape: ModifyVpcEndpointConnectionNotificationResult)
26341
26366
  end)
26342
26367
 
26368
+ api.add_operation(:modify_vpc_endpoint_payer_responsibility, Seahorse::Model::Operation.new.tap do |o|
26369
+ o.name = "ModifyVpcEndpointPayerResponsibility"
26370
+ o.http_method = "POST"
26371
+ o.http_request_uri = "/"
26372
+ o.input = Shapes::ShapeRef.new(shape: ModifyVpcEndpointPayerResponsibilityRequest)
26373
+ o.output = Shapes::ShapeRef.new(shape: ModifyVpcEndpointPayerResponsibilityResult)
26374
+ end)
26375
+
26343
26376
  api.add_operation(:modify_vpc_endpoint_service_configuration, Seahorse::Model::Operation.new.tap do |o|
26344
26377
  o.name = "ModifyVpcEndpointServiceConfiguration"
26345
26378
  o.http_method = "POST"
@@ -65943,6 +65943,60 @@ module Aws::EC2
65943
65943
  include Aws::Structure
65944
65944
  end
65945
65945
 
65946
+ # @!attribute [rw] dry_run
65947
+ # Checks whether you have the required permissions for the action,
65948
+ # without actually making the request, and provides an error response.
65949
+ # If you have the required permissions, the error response is
65950
+ # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
65951
+ # @return [Boolean]
65952
+ #
65953
+ # @!attribute [rw] service_id
65954
+ # The ID of the VPC endpoint service.
65955
+ # @return [String]
65956
+ #
65957
+ # @!attribute [rw] vpc_endpoint_id
65958
+ # The ID of the VPC endpoint.
65959
+ # @return [String]
65960
+ #
65961
+ # @!attribute [rw] payer_responsibility
65962
+ # The Amazon Web Services account to which the usage of VPC endpoint
65963
+ # is charged.
65964
+ # @return [String]
65965
+ #
65966
+ # @!attribute [rw] scope
65967
+ # The scope of usage/charges for which the billing account is being
65968
+ # modified.
65969
+ # @return [String]
65970
+ #
65971
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointPayerResponsibilityRequest AWS API Documentation
65972
+ #
65973
+ class ModifyVpcEndpointPayerResponsibilityRequest < Struct.new(
65974
+ :dry_run,
65975
+ :service_id,
65976
+ :vpc_endpoint_id,
65977
+ :payer_responsibility,
65978
+ :scope)
65979
+ SENSITIVE = []
65980
+ include Aws::Structure
65981
+ end
65982
+
65983
+ # @!attribute [rw] vpc_endpoint_id
65984
+ # The ID of the VPC endpoint.
65985
+ # @return [String]
65986
+ #
65987
+ # @!attribute [rw] payer_responsibilities
65988
+ # The payer responsibility settings for the VPC endpoint.
65989
+ # @return [Array<Types::PayerResponsibilityEntry>]
65990
+ #
65991
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcEndpointPayerResponsibilityResult AWS API Documentation
65992
+ #
65993
+ class ModifyVpcEndpointPayerResponsibilityResult < Struct.new(
65994
+ :vpc_endpoint_id,
65995
+ :payer_responsibilities)
65996
+ SENSITIVE = []
65997
+ include Aws::Structure
65998
+ end
65999
+
65946
66000
  # @!attribute [rw] dry_run
65947
66001
  # Checks whether you have the required permissions for the action,
65948
66002
  # without actually making the request, and provides an error response.
@@ -69186,6 +69240,25 @@ module Aws::EC2
69186
69240
  include Aws::Structure
69187
69241
  end
69188
69242
 
69243
+ # Describes a payer responsibility setting for a VPC endpoint.
69244
+ #
69245
+ # @!attribute [rw] scope
69246
+ # The scope of usage/charges.
69247
+ # @return [String]
69248
+ #
69249
+ # @!attribute [rw] payer_responsibility_type
69250
+ # The Amazon Web Services account to which the usage is charged.
69251
+ # @return [String]
69252
+ #
69253
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PayerResponsibilityEntry AWS API Documentation
69254
+ #
69255
+ class PayerResponsibilityEntry < Struct.new(
69256
+ :scope,
69257
+ :payer_responsibility_type)
69258
+ SENSITIVE = []
69259
+ include Aws::Structure
69260
+ end
69261
+
69189
69262
  # Describes the data that identifies an Amazon FPGA image (AFI) on the
69190
69263
  # PCI bus.
69191
69264
  #
@@ -87539,6 +87612,10 @@ module Aws::EC2
87539
87612
  # The Region where the service is hosted.
87540
87613
  # @return [String]
87541
87614
  #
87615
+ # @!attribute [rw] payer_responsibilities
87616
+ # The payer responsibility settings for the endpoint.
87617
+ # @return [Array<Types::PayerResponsibilityEntry>]
87618
+ #
87542
87619
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
87543
87620
  #
87544
87621
  class VpcEndpoint < Struct.new(
@@ -87566,7 +87643,8 @@ module Aws::EC2
87566
87643
  :failure_reason,
87567
87644
  :service_network_arn,
87568
87645
  :resource_configuration_arn,
87569
- :service_region)
87646
+ :service_region,
87647
+ :payer_responsibilities)
87570
87648
  SENSITIVE = []
87571
87649
  include Aws::Structure
87572
87650
  end
@@ -87697,6 +87775,10 @@ module Aws::EC2
87697
87775
  # The Region of the endpoint.
87698
87776
  # @return [String]
87699
87777
  #
87778
+ # @!attribute [rw] payer_responsibilities
87779
+ # The payer responsibility settings for the endpoint.
87780
+ # @return [Array<Types::PayerResponsibilityEntry>]
87781
+ #
87700
87782
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpointConnection AWS API Documentation
87701
87783
  #
87702
87784
  class VpcEndpointConnection < Struct.new(
@@ -87711,7 +87793,8 @@ module Aws::EC2
87711
87793
  :ip_address_type,
87712
87794
  :vpc_endpoint_connection_id,
87713
87795
  :tags,
87714
- :vpc_endpoint_region)
87796
+ :vpc_endpoint_region,
87797
+ :payer_responsibilities)
87715
87798
  SENSITIVE = []
87716
87799
  include Aws::Structure
87717
87800
  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.627.0'
82
82
 
83
83
  end
84
84
 
data/sig/client.rbs CHANGED
@@ -12556,6 +12556,21 @@ module Aws
12556
12556
  ) -> _ModifyVpcEndpointConnectionNotificationResponseSuccess
12557
12557
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpcEndpointConnectionNotificationResponseSuccess
12558
12558
 
12559
+ interface _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12560
+ include ::Seahorse::Client::_ResponseSuccess[Types::ModifyVpcEndpointPayerResponsibilityResult]
12561
+ def vpc_endpoint_id: () -> ::String
12562
+ def payer_responsibilities: () -> ::Array[Types::PayerResponsibilityEntry]
12563
+ end
12564
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Client.html#modify_vpc_endpoint_payer_responsibility-instance_method
12565
+ def modify_vpc_endpoint_payer_responsibility: (
12566
+ ?dry_run: bool,
12567
+ ?service_id: ::String,
12568
+ vpc_endpoint_id: ::String,
12569
+ payer_responsibility: ("vpc-endpoint-account" | "vpc-endpoint-service-account"),
12570
+ scope: ("vpc-endpoint-charges")
12571
+ ) -> _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12572
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyVpcEndpointPayerResponsibilityResponseSuccess
12573
+
12559
12574
  interface _ModifyVpcEndpointServiceConfigurationResponseSuccess
12560
12575
  include ::Seahorse::Client::_ResponseSuccess[Types::ModifyVpcEndpointServiceConfigurationResult]
12561
12576
  def return: () -> bool
data/sig/types.rbs CHANGED
@@ -14182,6 +14182,21 @@ module Aws::EC2
14182
14182
  SENSITIVE: []
14183
14183
  end
14184
14184
 
14185
+ class ModifyVpcEndpointPayerResponsibilityRequest
14186
+ attr_accessor dry_run: bool
14187
+ attr_accessor service_id: ::String
14188
+ attr_accessor vpc_endpoint_id: ::String
14189
+ attr_accessor payer_responsibility: ("vpc-endpoint-account" | "vpc-endpoint-service-account")
14190
+ attr_accessor scope: ("vpc-endpoint-charges")
14191
+ SENSITIVE: []
14192
+ end
14193
+
14194
+ class ModifyVpcEndpointPayerResponsibilityResult
14195
+ attr_accessor vpc_endpoint_id: ::String
14196
+ attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
14197
+ SENSITIVE: []
14198
+ end
14199
+
14185
14200
  class ModifyVpcEndpointRequest
14186
14201
  attr_accessor dry_run: bool
14187
14202
  attr_accessor vpc_endpoint_id: ::String
@@ -14904,6 +14919,12 @@ module Aws::EC2
14904
14919
  SENSITIVE: []
14905
14920
  end
14906
14921
 
14922
+ class PayerResponsibilityEntry
14923
+ attr_accessor scope: ("vpc-endpoint-charges")
14924
+ attr_accessor payer_responsibility_type: ("vpc-endpoint-account" | "vpc-endpoint-service-account")
14925
+ SENSITIVE: []
14926
+ end
14927
+
14907
14928
  class PciId
14908
14929
  attr_accessor device_id: ::String
14909
14930
  attr_accessor vendor_id: ::String
@@ -18924,6 +18945,7 @@ module Aws::EC2
18924
18945
  attr_accessor service_network_arn: ::String
18925
18946
  attr_accessor resource_configuration_arn: ::String
18926
18947
  attr_accessor service_region: ::String
18948
+ attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
18927
18949
  SENSITIVE: []
18928
18950
  end
18929
18951
 
@@ -18956,6 +18978,7 @@ module Aws::EC2
18956
18978
  attr_accessor vpc_endpoint_connection_id: ::String
18957
18979
  attr_accessor tags: ::Array[Types::Tag]
18958
18980
  attr_accessor vpc_endpoint_region: ::String
18981
+ attr_accessor payer_responsibilities: ::Array[Types::PayerResponsibilityEntry]
18959
18982
  SENSITIVE: []
18960
18983
  end
18961
18984
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.626.0
4
+ version: 1.627.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services