aws-sdk-ec2 1.129.0 → 1.130.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 +4 -4
- data/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +118 -31
- data/lib/aws-sdk-ec2/client_api.rb +36 -0
- data/lib/aws-sdk-ec2/types.rb +172 -38
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1623cbb6802b833c71dc544690dc87346c9a4ad5
|
4
|
+
data.tar.gz: 913ddfbce857743511a4dc241efbb36ad1cf5014
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45569315d6ce8ba7be116bd0f909387ed64876b8973384490c09e081f17021c5f03ec093d4f95728f2e56445bda01e949c6094a28b3ff317fa54ec943b696418
|
7
|
+
data.tar.gz: cebe16409986e9bcedd04343a0f9d7e0cbf02b7cffacbc007e81e07094adedb205a03906879ce44f8cff2f60adb086c9555de8497b5975d7589daf5a7de15f33
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -416,7 +416,7 @@ module Aws::EC2
|
|
416
416
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
417
417
|
#
|
418
418
|
# @option params [required, String] :service_id
|
419
|
-
# The ID of the endpoint service.
|
419
|
+
# The ID of the VPC endpoint service.
|
420
420
|
#
|
421
421
|
# @option params [required, Array<String>] :vpc_endpoint_ids
|
422
422
|
# The IDs of one or more interface VPC endpoints.
|
@@ -8602,15 +8602,15 @@ module Aws::EC2
|
|
8602
8602
|
|
8603
8603
|
# Creates a VPC endpoint for a specified service. An endpoint enables
|
8604
8604
|
# you to create a private connection between your VPC and the service.
|
8605
|
-
# The service may be provided by AWS, an AWS Marketplace
|
8605
|
+
# The service may be provided by AWS, an AWS Marketplace Partner, or
|
8606
8606
|
# another AWS account. For more information, see [VPC Endpoints][1] in
|
8607
8607
|
# the *Amazon Virtual Private Cloud User Guide*.
|
8608
8608
|
#
|
8609
8609
|
# A `gateway` endpoint serves as a target for a route in your route
|
8610
8610
|
# table for traffic destined for the AWS service. You can specify an
|
8611
|
-
# endpoint policy to attach to the endpoint
|
8612
|
-
# the service from your VPC. You can also specify the VPC route
|
8613
|
-
# that use the endpoint.
|
8611
|
+
# endpoint policy to attach to the endpoint, which will control access
|
8612
|
+
# to the service from your VPC. You can also specify the VPC route
|
8613
|
+
# tables that use the endpoint.
|
8614
8614
|
#
|
8615
8615
|
# An `interface` endpoint is a network interface in your subnet that
|
8616
8616
|
# serves as an endpoint for communicating with the specified service.
|
@@ -8660,7 +8660,7 @@ module Aws::EC2
|
|
8660
8660
|
# associate with the endpoint network interface.
|
8661
8661
|
#
|
8662
8662
|
# @option params [String] :client_token
|
8663
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8663
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8664
8664
|
# idempotency of the request. For more information, see [How to Ensure
|
8665
8665
|
# Idempotency][1].
|
8666
8666
|
#
|
@@ -8669,13 +8669,13 @@ module Aws::EC2
|
|
8669
8669
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
8670
8670
|
#
|
8671
8671
|
# @option params [Boolean] :private_dns_enabled
|
8672
|
-
# (Interface endpoint)
|
8672
|
+
# (Interface endpoint) Indicates whether to associate a private hosted
|
8673
8673
|
# zone with the specified VPC. The private hosted zone contains a record
|
8674
8674
|
# set for the default public DNS name for the service for the Region
|
8675
|
-
# (for example, `kinesis.us-east-1.amazonaws.com`) which resolves to
|
8676
|
-
# private IP addresses of the endpoint network interfaces in the
|
8677
|
-
# This enables you to make requests to the default public DNS name
|
8678
|
-
# the service instead of the public DNS names that are automatically
|
8675
|
+
# (for example, `kinesis.us-east-1.amazonaws.com`), which resolves to
|
8676
|
+
# the private IP addresses of the endpoint network interfaces in the
|
8677
|
+
# VPC. This enables you to make requests to the default public DNS name
|
8678
|
+
# for the service instead of the public DNS names that are automatically
|
8679
8679
|
# generated by the VPC endpoint service.
|
8680
8680
|
#
|
8681
8681
|
# To use a private hosted zone, you must set the following VPC
|
@@ -8731,6 +8731,8 @@ module Aws::EC2
|
|
8731
8731
|
# resp.vpc_endpoint.tags[0].key #=> String
|
8732
8732
|
# resp.vpc_endpoint.tags[0].value #=> String
|
8733
8733
|
# resp.vpc_endpoint.owner_id #=> String
|
8734
|
+
# resp.vpc_endpoint.last_error.message #=> String
|
8735
|
+
# resp.vpc_endpoint.last_error.code #=> String
|
8734
8736
|
# resp.client_token #=> String
|
8735
8737
|
#
|
8736
8738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint AWS API Documentation
|
@@ -8774,7 +8776,7 @@ module Aws::EC2
|
|
8774
8776
|
# values are `Accept`, `Connect`, `Delete`, and `Reject`.
|
8775
8777
|
#
|
8776
8778
|
# @option params [String] :client_token
|
8777
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8779
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8778
8780
|
# idempotency of the request. For more information, see [How to Ensure
|
8779
8781
|
# Idempotency][1].
|
8780
8782
|
#
|
@@ -8829,9 +8831,15 @@ module Aws::EC2
|
|
8829
8831
|
# Endpoint Services][1] in the *Amazon Virtual Private Cloud User
|
8830
8832
|
# Guide*.
|
8831
8833
|
#
|
8834
|
+
# If you set the private DNS name, you must prove that you own the
|
8835
|
+
# private DNS domain name. For more information, see [VPC Endpoint
|
8836
|
+
# Service Private DNS Name Verification][2] in the *Amazon Virtual
|
8837
|
+
# Private Cloud User Guide*.
|
8838
|
+
#
|
8832
8839
|
#
|
8833
8840
|
#
|
8834
8841
|
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-service.html
|
8842
|
+
# [2]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
|
8835
8843
|
#
|
8836
8844
|
# @option params [Boolean] :dry_run
|
8837
8845
|
# Checks whether you have the required permissions for the action,
|
@@ -8840,16 +8848,19 @@ module Aws::EC2
|
|
8840
8848
|
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
8841
8849
|
#
|
8842
8850
|
# @option params [Boolean] :acceptance_required
|
8843
|
-
#
|
8844
|
-
# to your service must be accepted. To accept a request, use
|
8851
|
+
# Indicates whether requests from service consumers to create an
|
8852
|
+
# endpoint to your service must be accepted. To accept a request, use
|
8845
8853
|
# AcceptVpcEndpointConnections.
|
8846
8854
|
#
|
8855
|
+
# @option params [String] :private_dns_name
|
8856
|
+
# The private DNS name to assign to the VPC endpoint service.
|
8857
|
+
#
|
8847
8858
|
# @option params [required, Array<String>] :network_load_balancer_arns
|
8848
8859
|
# The Amazon Resource Names (ARNs) of one or more Network Load Balancers
|
8849
8860
|
# for your service.
|
8850
8861
|
#
|
8851
8862
|
# @option params [String] :client_token
|
8852
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8863
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8853
8864
|
# idempotency of the request. For more information, see [How to Ensure
|
8854
8865
|
# Idempotency][1].
|
8855
8866
|
#
|
@@ -8867,6 +8878,7 @@ module Aws::EC2
|
|
8867
8878
|
# resp = client.create_vpc_endpoint_service_configuration({
|
8868
8879
|
# dry_run: false,
|
8869
8880
|
# acceptance_required: false,
|
8881
|
+
# private_dns_name: "String",
|
8870
8882
|
# network_load_balancer_arns: ["String"], # required
|
8871
8883
|
# client_token: "String",
|
8872
8884
|
# })
|
@@ -8887,6 +8899,10 @@ module Aws::EC2
|
|
8887
8899
|
# resp.service_configuration.base_endpoint_dns_names #=> Array
|
8888
8900
|
# resp.service_configuration.base_endpoint_dns_names[0] #=> String
|
8889
8901
|
# resp.service_configuration.private_dns_name #=> String
|
8902
|
+
# resp.service_configuration.private_dns_name_configuration.state #=> String, one of "pendingVerification", "verified", "failed"
|
8903
|
+
# resp.service_configuration.private_dns_name_configuration.type #=> String
|
8904
|
+
# resp.service_configuration.private_dns_name_configuration.value #=> String
|
8905
|
+
# resp.service_configuration.private_dns_name_configuration.name #=> String
|
8890
8906
|
# resp.service_configuration.tags #=> Array
|
8891
8907
|
# resp.service_configuration.tags[0].key #=> String
|
8892
8908
|
# resp.service_configuration.tags[0].value #=> String
|
@@ -23023,7 +23039,7 @@ module Aws::EC2
|
|
23023
23039
|
# @option params [Array<Types::Filter>] :filters
|
23024
23040
|
# One or more filters.
|
23025
23041
|
#
|
23026
|
-
# * `connection-notification-arn` - The ARN of SNS topic for the
|
23042
|
+
# * `connection-notification-arn` - The ARN of the SNS topic for the
|
23027
23043
|
# notification.
|
23028
23044
|
#
|
23029
23045
|
# * `connection-notification-id` - The ID of the notification.
|
@@ -23114,8 +23130,8 @@ module Aws::EC2
|
|
23114
23130
|
# The maximum number of results to return for the request in a single
|
23115
23131
|
# page. The remaining results of the initial request can be seen by
|
23116
23132
|
# sending another request with the returned `NextToken` value. This
|
23117
|
-
# value can be between 5 and
|
23118
|
-
# larger than
|
23133
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
23134
|
+
# larger than 1,000, only 1,000 results are returned.
|
23119
23135
|
#
|
23120
23136
|
# @option params [String] :next_token
|
23121
23137
|
# The token to retrieve the next page of results.
|
@@ -23199,8 +23215,8 @@ module Aws::EC2
|
|
23199
23215
|
# The maximum number of results to return for the request in a single
|
23200
23216
|
# page. The remaining results of the initial request can be seen by
|
23201
23217
|
# sending another request with the returned `NextToken` value. This
|
23202
|
-
# value can be between 5 and
|
23203
|
-
# larger than
|
23218
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
23219
|
+
# larger than 1,000, only 1,000 results are returned.
|
23204
23220
|
#
|
23205
23221
|
# @option params [String] :next_token
|
23206
23222
|
# The token to retrieve the next page of results.
|
@@ -23242,6 +23258,10 @@ module Aws::EC2
|
|
23242
23258
|
# resp.service_configurations[0].base_endpoint_dns_names #=> Array
|
23243
23259
|
# resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
|
23244
23260
|
# resp.service_configurations[0].private_dns_name #=> String
|
23261
|
+
# resp.service_configurations[0].private_dns_name_configuration.state #=> String, one of "pendingVerification", "verified", "failed"
|
23262
|
+
# resp.service_configurations[0].private_dns_name_configuration.type #=> String
|
23263
|
+
# resp.service_configurations[0].private_dns_name_configuration.value #=> String
|
23264
|
+
# resp.service_configurations[0].private_dns_name_configuration.name #=> String
|
23245
23265
|
# resp.service_configurations[0].tags #=> Array
|
23246
23266
|
# resp.service_configurations[0].tags[0].key #=> String
|
23247
23267
|
# resp.service_configurations[0].tags[0].value #=> String
|
@@ -23280,8 +23300,8 @@ module Aws::EC2
|
|
23280
23300
|
# The maximum number of results to return for the request in a single
|
23281
23301
|
# page. The remaining results of the initial request can be seen by
|
23282
23302
|
# sending another request with the returned `NextToken` value. This
|
23283
|
-
# value can be between 5 and
|
23284
|
-
# larger than
|
23303
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
23304
|
+
# larger than 1,000, only 1,000 results are returned.
|
23285
23305
|
#
|
23286
23306
|
# @option params [String] :next_token
|
23287
23307
|
# The token to retrieve the next page of results.
|
@@ -23336,7 +23356,7 @@ module Aws::EC2
|
|
23336
23356
|
# @option params [Array<Types::Filter>] :filters
|
23337
23357
|
# One or more filters.
|
23338
23358
|
#
|
23339
|
-
# * `service-name
|
23359
|
+
# * `service-name` - The name of the service.
|
23340
23360
|
#
|
23341
23361
|
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
23342
23362
|
# the resource. Use the tag key in the filter name and the tag value
|
@@ -23353,7 +23373,7 @@ module Aws::EC2
|
|
23353
23373
|
# returns a token that you can specify in a subsequent call to get the
|
23354
23374
|
# next set of results.
|
23355
23375
|
#
|
23356
|
-
# Constraint: If the value is greater than
|
23376
|
+
# Constraint: If the value is greater than 1,000, we return only 1,000
|
23357
23377
|
# items.
|
23358
23378
|
#
|
23359
23379
|
# @option params [String] :next_token
|
@@ -23402,6 +23422,7 @@ module Aws::EC2
|
|
23402
23422
|
# resp.service_details[0].tags #=> Array
|
23403
23423
|
# resp.service_details[0].tags[0].key #=> String
|
23404
23424
|
# resp.service_details[0].tags[0].value #=> String
|
23425
|
+
# resp.service_details[0].private_dns_name_verification_state #=> String, one of "pendingVerification", "verified", "failed"
|
23405
23426
|
# resp.next_token #=> String
|
23406
23427
|
#
|
23407
23428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices AWS API Documentation
|
@@ -23427,11 +23448,11 @@ module Aws::EC2
|
|
23427
23448
|
# @option params [Array<Types::Filter>] :filters
|
23428
23449
|
# One or more filters.
|
23429
23450
|
#
|
23430
|
-
# * `service-name
|
23451
|
+
# * `service-name` - The name of the service.
|
23431
23452
|
#
|
23432
|
-
# * `vpc-id
|
23453
|
+
# * `vpc-id` - The ID of the VPC in which the endpoint resides.
|
23433
23454
|
#
|
23434
|
-
# * `vpc-endpoint-id
|
23455
|
+
# * `vpc-endpoint-id` - The ID of the endpoint.
|
23435
23456
|
#
|
23436
23457
|
# * `vpc-endpoint-state` - The state of the endpoint
|
23437
23458
|
# (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
|
@@ -23452,7 +23473,7 @@ module Aws::EC2
|
|
23452
23473
|
# returns a token that you can specify in a subsequent call to get the
|
23453
23474
|
# next set of results.
|
23454
23475
|
#
|
23455
|
-
# Constraint: If the value is greater than
|
23476
|
+
# Constraint: If the value is greater than 1,000, we return only 1,000
|
23456
23477
|
# items.
|
23457
23478
|
#
|
23458
23479
|
# @option params [String] :next_token
|
@@ -23507,6 +23528,8 @@ module Aws::EC2
|
|
23507
23528
|
# resp.vpc_endpoints[0].tags[0].key #=> String
|
23508
23529
|
# resp.vpc_endpoints[0].tags[0].value #=> String
|
23509
23530
|
# resp.vpc_endpoints[0].owner_id #=> String
|
23531
|
+
# resp.vpc_endpoints[0].last_error.message #=> String
|
23532
|
+
# resp.vpc_endpoints[0].last_error.code #=> String
|
23510
23533
|
# resp.next_token #=> String
|
23511
23534
|
#
|
23512
23535
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints AWS API Documentation
|
@@ -29817,7 +29840,7 @@ module Aws::EC2
|
|
29817
29840
|
# from the network interface.
|
29818
29841
|
#
|
29819
29842
|
# @option params [Boolean] :private_dns_enabled
|
29820
|
-
# (Interface endpoint)
|
29843
|
+
# (Interface endpoint) Indicates whether a private hosted zone is
|
29821
29844
|
# associated with the VPC.
|
29822
29845
|
#
|
29823
29846
|
# @return [Types::ModifyVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
@@ -29904,6 +29927,15 @@ module Aws::EC2
|
|
29904
29927
|
# can specify whether acceptance is required for requests to connect to
|
29905
29928
|
# your endpoint service through an interface VPC endpoint.
|
29906
29929
|
#
|
29930
|
+
# If you set or modify the private DNS name, you must prove that you own
|
29931
|
+
# the private DNS domain name. For more information, see [VPC Endpoint
|
29932
|
+
# Service Private DNS Name Verification][1] in the *Amazon Virtual
|
29933
|
+
# Private Cloud User Guide*.
|
29934
|
+
#
|
29935
|
+
#
|
29936
|
+
#
|
29937
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/endpoint-services-dns-validation.html
|
29938
|
+
#
|
29907
29939
|
# @option params [Boolean] :dry_run
|
29908
29940
|
# Checks whether you have the required permissions for the action,
|
29909
29941
|
# without actually making the request, and provides an error response.
|
@@ -29913,8 +29945,14 @@ module Aws::EC2
|
|
29913
29945
|
# @option params [required, String] :service_id
|
29914
29946
|
# The ID of the service.
|
29915
29947
|
#
|
29948
|
+
# @option params [String] :private_dns_name
|
29949
|
+
# The private DNS name to assign to the endpoint service.
|
29950
|
+
#
|
29951
|
+
# @option params [Boolean] :remove_private_dns_name
|
29952
|
+
# Removes the private DNS name of the endpoint service.
|
29953
|
+
#
|
29916
29954
|
# @option params [Boolean] :acceptance_required
|
29917
|
-
#
|
29955
|
+
# Indicates whether requests to create an endpoint to your service must
|
29918
29956
|
# be accepted.
|
29919
29957
|
#
|
29920
29958
|
# @option params [Array<String>] :add_network_load_balancer_arns
|
@@ -29934,6 +29972,8 @@ module Aws::EC2
|
|
29934
29972
|
# resp = client.modify_vpc_endpoint_service_configuration({
|
29935
29973
|
# dry_run: false,
|
29936
29974
|
# service_id: "ServiceId", # required
|
29975
|
+
# private_dns_name: "String",
|
29976
|
+
# remove_private_dns_name: false,
|
29937
29977
|
# acceptance_required: false,
|
29938
29978
|
# add_network_load_balancer_arns: ["String"],
|
29939
29979
|
# remove_network_load_balancer_arns: ["String"],
|
@@ -34790,6 +34830,53 @@ module Aws::EC2
|
|
34790
34830
|
req.send_request(options)
|
34791
34831
|
end
|
34792
34832
|
|
34833
|
+
# Initiates the verification process to prove that the service provider
|
34834
|
+
# owns the private DNS name domain for the endpoint service.
|
34835
|
+
#
|
34836
|
+
# The service provider must successfully perform the verification before
|
34837
|
+
# the consumer can use the name to access the service.
|
34838
|
+
#
|
34839
|
+
# Before the service provider runs this command, they must add a record
|
34840
|
+
# to the DNS server. For more information, see [Adding a TXT Record to
|
34841
|
+
# Your Domain's DNS Server ][1] in the *Amazon VPC User Guide*.
|
34842
|
+
#
|
34843
|
+
#
|
34844
|
+
#
|
34845
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/ndpoint-services-dns-validation.html#add-dns-txt-record
|
34846
|
+
#
|
34847
|
+
# @option params [Boolean] :dry_run
|
34848
|
+
# Checks whether you have the required permissions for the action,
|
34849
|
+
# without actually making the request, and provides an error response.
|
34850
|
+
# If you have the required permissions, the error response is
|
34851
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
34852
|
+
#
|
34853
|
+
# @option params [required, String] :service_id
|
34854
|
+
# The ID of the endpoint service.
|
34855
|
+
#
|
34856
|
+
# @return [Types::StartVpcEndpointServicePrivateDnsVerificationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
34857
|
+
#
|
34858
|
+
# * {Types::StartVpcEndpointServicePrivateDnsVerificationResult#return_value #return_value} => Boolean
|
34859
|
+
#
|
34860
|
+
# @example Request syntax with placeholder values
|
34861
|
+
#
|
34862
|
+
# resp = client.start_vpc_endpoint_service_private_dns_verification({
|
34863
|
+
# dry_run: false,
|
34864
|
+
# service_id: "ServiceId", # required
|
34865
|
+
# })
|
34866
|
+
#
|
34867
|
+
# @example Response structure
|
34868
|
+
#
|
34869
|
+
# resp.return_value #=> Boolean
|
34870
|
+
#
|
34871
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartVpcEndpointServicePrivateDnsVerification AWS API Documentation
|
34872
|
+
#
|
34873
|
+
# @overload start_vpc_endpoint_service_private_dns_verification(params = {})
|
34874
|
+
# @param [Hash] params ({})
|
34875
|
+
def start_vpc_endpoint_service_private_dns_verification(params = {}, options = {})
|
34876
|
+
req = build_request(:start_vpc_endpoint_service_private_dns_verification, params)
|
34877
|
+
req.send_request(options)
|
34878
|
+
end
|
34879
|
+
|
34793
34880
|
# Stops an Amazon EBS-backed instance.
|
34794
34881
|
#
|
34795
34882
|
# You can use the Stop action to hibernate an instance if the instance
|
@@ -35497,7 +35584,7 @@ module Aws::EC2
|
|
35497
35584
|
params: params,
|
35498
35585
|
config: config)
|
35499
35586
|
context[:gem_name] = 'aws-sdk-ec2'
|
35500
|
-
context[:gem_version] = '1.
|
35587
|
+
context[:gem_version] = '1.130.0'
|
35501
35588
|
Seahorse::Client::Request.new(handlers, context)
|
35502
35589
|
end
|
35503
35590
|
|
@@ -776,6 +776,7 @@ module Aws::EC2
|
|
776
776
|
DiskType = Shapes::StringShape.new(name: 'DiskType')
|
777
777
|
DnsEntry = Shapes::StructureShape.new(name: 'DnsEntry')
|
778
778
|
DnsEntrySet = Shapes::ListShape.new(name: 'DnsEntrySet')
|
779
|
+
DnsNameState = Shapes::StringShape.new(name: 'DnsNameState')
|
779
780
|
DnsServersOptionsModifyStructure = Shapes::StructureShape.new(name: 'DnsServersOptionsModifyStructure')
|
780
781
|
DnsSupportValue = Shapes::StringShape.new(name: 'DnsSupportValue')
|
781
782
|
DomainType = Shapes::StringShape.new(name: 'DomainType')
|
@@ -1121,6 +1122,7 @@ module Aws::EC2
|
|
1121
1122
|
KeyPairList = Shapes::ListShape.new(name: 'KeyPairList')
|
1122
1123
|
KeyPairName = Shapes::StringShape.new(name: 'KeyPairName')
|
1123
1124
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
1125
|
+
LastError = Shapes::StructureShape.new(name: 'LastError')
|
1124
1126
|
LaunchPermission = Shapes::StructureShape.new(name: 'LaunchPermission')
|
1125
1127
|
LaunchPermissionList = Shapes::ListShape.new(name: 'LaunchPermissionList')
|
1126
1128
|
LaunchPermissionModifications = Shapes::StructureShape.new(name: 'LaunchPermissionModifications')
|
@@ -1415,6 +1417,7 @@ module Aws::EC2
|
|
1415
1417
|
PrincipalIdFormat = Shapes::StructureShape.new(name: 'PrincipalIdFormat')
|
1416
1418
|
PrincipalIdFormatList = Shapes::ListShape.new(name: 'PrincipalIdFormatList')
|
1417
1419
|
PrincipalType = Shapes::StringShape.new(name: 'PrincipalType')
|
1420
|
+
PrivateDnsNameConfiguration = Shapes::StructureShape.new(name: 'PrivateDnsNameConfiguration')
|
1418
1421
|
PrivateIpAddressConfigSet = Shapes::ListShape.new(name: 'PrivateIpAddressConfigSet')
|
1419
1422
|
PrivateIpAddressSpecification = Shapes::StructureShape.new(name: 'PrivateIpAddressSpecification')
|
1420
1423
|
PrivateIpAddressSpecificationList = Shapes::ListShape.new(name: 'PrivateIpAddressSpecificationList')
|
@@ -1657,6 +1660,8 @@ module Aws::EC2
|
|
1657
1660
|
StaleSecurityGroupSet = Shapes::ListShape.new(name: 'StaleSecurityGroupSet')
|
1658
1661
|
StartInstancesRequest = Shapes::StructureShape.new(name: 'StartInstancesRequest')
|
1659
1662
|
StartInstancesResult = Shapes::StructureShape.new(name: 'StartInstancesResult')
|
1663
|
+
StartVpcEndpointServicePrivateDnsVerificationRequest = Shapes::StructureShape.new(name: 'StartVpcEndpointServicePrivateDnsVerificationRequest')
|
1664
|
+
StartVpcEndpointServicePrivateDnsVerificationResult = Shapes::StructureShape.new(name: 'StartVpcEndpointServicePrivateDnsVerificationResult')
|
1660
1665
|
State = Shapes::StringShape.new(name: 'State')
|
1661
1666
|
StateReason = Shapes::StructureShape.new(name: 'StateReason')
|
1662
1667
|
Status = Shapes::StringShape.new(name: 'Status')
|
@@ -3210,6 +3215,7 @@ module Aws::EC2
|
|
3210
3215
|
|
3211
3216
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3212
3217
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "AcceptanceRequired"))
|
3218
|
+
CreateVpcEndpointServiceConfigurationRequest.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "PrivateDnsName"))
|
3213
3219
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, required: true, location_name: "NetworkLoadBalancerArn"))
|
3214
3220
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
3215
3221
|
CreateVpcEndpointServiceConfigurationRequest.struct_class = Types::CreateVpcEndpointServiceConfigurationRequest
|
@@ -6336,6 +6342,10 @@ module Aws::EC2
|
|
6336
6342
|
|
6337
6343
|
KeyPairList.member = Shapes::ShapeRef.new(shape: KeyPairInfo, location_name: "item")
|
6338
6344
|
|
6345
|
+
LastError.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
6346
|
+
LastError.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
|
6347
|
+
LastError.struct_class = Types::LastError
|
6348
|
+
|
6339
6349
|
LaunchPermission.add_member(:group, Shapes::ShapeRef.new(shape: PermissionGroup, location_name: "group"))
|
6340
6350
|
LaunchPermission.add_member(:user_id, Shapes::ShapeRef.new(shape: String, location_name: "userId"))
|
6341
6351
|
LaunchPermission.struct_class = Types::LaunchPermission
|
@@ -7009,6 +7019,8 @@ module Aws::EC2
|
|
7009
7019
|
|
7010
7020
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
7011
7021
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "ServiceId"))
|
7022
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "PrivateDnsName"))
|
7023
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_private_dns_name, Shapes::ShapeRef.new(shape: Boolean, location_name: "RemovePrivateDnsName"))
|
7012
7024
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "AcceptanceRequired"))
|
7013
7025
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddNetworkLoadBalancerArn"))
|
7014
7026
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveNetworkLoadBalancerArn"))
|
@@ -7440,6 +7452,12 @@ module Aws::EC2
|
|
7440
7452
|
|
7441
7453
|
PrincipalIdFormatList.member = Shapes::ShapeRef.new(shape: PrincipalIdFormat, location_name: "item")
|
7442
7454
|
|
7455
|
+
PrivateDnsNameConfiguration.add_member(:state, Shapes::ShapeRef.new(shape: DnsNameState, location_name: "state"))
|
7456
|
+
PrivateDnsNameConfiguration.add_member(:type, Shapes::ShapeRef.new(shape: String, location_name: "type"))
|
7457
|
+
PrivateDnsNameConfiguration.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
|
7458
|
+
PrivateDnsNameConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
7459
|
+
PrivateDnsNameConfiguration.struct_class = Types::PrivateDnsNameConfiguration
|
7460
|
+
|
7443
7461
|
PrivateIpAddressConfigSet.member = Shapes::ShapeRef.new(shape: ScheduledInstancesPrivateIpAddressConfig, location_name: "PrivateIpAddressConfigSet")
|
7444
7462
|
|
7445
7463
|
PrivateIpAddressSpecification.add_member(:primary, Shapes::ShapeRef.new(shape: Boolean, location_name: "primary"))
|
@@ -8334,6 +8352,7 @@ module Aws::EC2
|
|
8334
8352
|
ServiceConfiguration.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
|
8335
8353
|
ServiceConfiguration.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
|
8336
8354
|
ServiceConfiguration.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
|
8355
|
+
ServiceConfiguration.add_member(:private_dns_name_configuration, Shapes::ShapeRef.new(shape: PrivateDnsNameConfiguration, location_name: "privateDnsNameConfiguration"))
|
8337
8356
|
ServiceConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
8338
8357
|
ServiceConfiguration.struct_class = Types::ServiceConfiguration
|
8339
8358
|
|
@@ -8350,6 +8369,7 @@ module Aws::EC2
|
|
8350
8369
|
ServiceDetail.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptanceRequired"))
|
8351
8370
|
ServiceDetail.add_member(:manages_vpc_endpoints, Shapes::ShapeRef.new(shape: Boolean, location_name: "managesVpcEndpoints"))
|
8352
8371
|
ServiceDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
8372
|
+
ServiceDetail.add_member(:private_dns_name_verification_state, Shapes::ShapeRef.new(shape: DnsNameState, location_name: "privateDnsNameVerificationState"))
|
8353
8373
|
ServiceDetail.struct_class = Types::ServiceDetail
|
8354
8374
|
|
8355
8375
|
ServiceDetailSet.member = Shapes::ShapeRef.new(shape: ServiceDetail, location_name: "item")
|
@@ -8604,6 +8624,13 @@ module Aws::EC2
|
|
8604
8624
|
StartInstancesResult.add_member(:starting_instances, Shapes::ShapeRef.new(shape: InstanceStateChangeList, location_name: "instancesSet"))
|
8605
8625
|
StartInstancesResult.struct_class = Types::StartInstancesResult
|
8606
8626
|
|
8627
|
+
StartVpcEndpointServicePrivateDnsVerificationRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
8628
|
+
StartVpcEndpointServicePrivateDnsVerificationRequest.add_member(:service_id, Shapes::ShapeRef.new(shape: ServiceId, required: true, location_name: "ServiceId"))
|
8629
|
+
StartVpcEndpointServicePrivateDnsVerificationRequest.struct_class = Types::StartVpcEndpointServicePrivateDnsVerificationRequest
|
8630
|
+
|
8631
|
+
StartVpcEndpointServicePrivateDnsVerificationResult.add_member(:return_value, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
8632
|
+
StartVpcEndpointServicePrivateDnsVerificationResult.struct_class = Types::StartVpcEndpointServicePrivateDnsVerificationResult
|
8633
|
+
|
8607
8634
|
StateReason.add_member(:code, Shapes::ShapeRef.new(shape: String, location_name: "code"))
|
8608
8635
|
StateReason.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
8609
8636
|
StateReason.struct_class = Types::StateReason
|
@@ -9305,6 +9332,7 @@ module Aws::EC2
|
|
9305
9332
|
VpcEndpoint.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationTimestamp"))
|
9306
9333
|
VpcEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
9307
9334
|
VpcEndpoint.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
9335
|
+
VpcEndpoint.add_member(:last_error, Shapes::ShapeRef.new(shape: LastError, location_name: "lastError"))
|
9308
9336
|
VpcEndpoint.struct_class = Types::VpcEndpoint
|
9309
9337
|
|
9310
9338
|
VpcEndpointConnection.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
@@ -12965,6 +12993,14 @@ module Aws::EC2
|
|
12965
12993
|
o.output = Shapes::ShapeRef.new(shape: StartInstancesResult)
|
12966
12994
|
end)
|
12967
12995
|
|
12996
|
+
api.add_operation(:start_vpc_endpoint_service_private_dns_verification, Seahorse::Model::Operation.new.tap do |o|
|
12997
|
+
o.name = "StartVpcEndpointServicePrivateDnsVerification"
|
12998
|
+
o.http_method = "POST"
|
12999
|
+
o.http_request_uri = "/"
|
13000
|
+
o.input = Shapes::ShapeRef.new(shape: StartVpcEndpointServicePrivateDnsVerificationRequest)
|
13001
|
+
o.output = Shapes::ShapeRef.new(shape: StartVpcEndpointServicePrivateDnsVerificationResult)
|
13002
|
+
end)
|
13003
|
+
|
12968
13004
|
api.add_operation(:stop_instances, Seahorse::Model::Operation.new.tap do |o|
|
12969
13005
|
o.name = "StopInstances"
|
12970
13006
|
o.http_method = "POST"
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -156,7 +156,7 @@ module Aws::EC2
|
|
156
156
|
# @return [Boolean]
|
157
157
|
#
|
158
158
|
# @!attribute [rw] service_id
|
159
|
-
# The ID of the endpoint service.
|
159
|
+
# The ID of the VPC endpoint service.
|
160
160
|
# @return [String]
|
161
161
|
#
|
162
162
|
# @!attribute [rw] vpc_endpoint_ids
|
@@ -8411,7 +8411,7 @@ module Aws::EC2
|
|
8411
8411
|
# @return [Array<String>]
|
8412
8412
|
#
|
8413
8413
|
# @!attribute [rw] client_token
|
8414
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8414
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8415
8415
|
# idempotency of the request. For more information, see [How to Ensure
|
8416
8416
|
# Idempotency][1].
|
8417
8417
|
#
|
@@ -8437,7 +8437,7 @@ module Aws::EC2
|
|
8437
8437
|
# @return [Types::ConnectionNotification]
|
8438
8438
|
#
|
8439
8439
|
# @!attribute [rw] client_token
|
8440
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8440
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8441
8441
|
# idempotency of the request.
|
8442
8442
|
# @return [String]
|
8443
8443
|
#
|
@@ -8512,7 +8512,7 @@ module Aws::EC2
|
|
8512
8512
|
# @return [Array<String>]
|
8513
8513
|
#
|
8514
8514
|
# @!attribute [rw] client_token
|
8515
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8515
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8516
8516
|
# idempotency of the request. For more information, see [How to Ensure
|
8517
8517
|
# Idempotency][1].
|
8518
8518
|
#
|
@@ -8522,10 +8522,10 @@ module Aws::EC2
|
|
8522
8522
|
# @return [String]
|
8523
8523
|
#
|
8524
8524
|
# @!attribute [rw] private_dns_enabled
|
8525
|
-
# (Interface endpoint)
|
8525
|
+
# (Interface endpoint) Indicates whether to associate a private hosted
|
8526
8526
|
# zone with the specified VPC. The private hosted zone contains a
|
8527
8527
|
# record set for the default public DNS name for the service for the
|
8528
|
-
# Region (for example, `kinesis.us-east-1.amazonaws.com`) which
|
8528
|
+
# Region (for example, `kinesis.us-east-1.amazonaws.com`), which
|
8529
8529
|
# resolves to the private IP addresses of the endpoint network
|
8530
8530
|
# interfaces in the VPC. This enables you to make requests to the
|
8531
8531
|
# default public DNS name for the service instead of the public DNS
|
@@ -8561,7 +8561,7 @@ module Aws::EC2
|
|
8561
8561
|
# @return [Types::VpcEndpoint]
|
8562
8562
|
#
|
8563
8563
|
# @!attribute [rw] client_token
|
8564
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8564
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8565
8565
|
# idempotency of the request.
|
8566
8566
|
# @return [String]
|
8567
8567
|
#
|
@@ -8579,6 +8579,7 @@ module Aws::EC2
|
|
8579
8579
|
# {
|
8580
8580
|
# dry_run: false,
|
8581
8581
|
# acceptance_required: false,
|
8582
|
+
# private_dns_name: "String",
|
8582
8583
|
# network_load_balancer_arns: ["String"], # required
|
8583
8584
|
# client_token: "String",
|
8584
8585
|
# }
|
@@ -8591,18 +8592,22 @@ module Aws::EC2
|
|
8591
8592
|
# @return [Boolean]
|
8592
8593
|
#
|
8593
8594
|
# @!attribute [rw] acceptance_required
|
8594
|
-
#
|
8595
|
+
# Indicates whether requests from service consumers to create an
|
8595
8596
|
# endpoint to your service must be accepted. To accept a request, use
|
8596
8597
|
# AcceptVpcEndpointConnections.
|
8597
8598
|
# @return [Boolean]
|
8598
8599
|
#
|
8600
|
+
# @!attribute [rw] private_dns_name
|
8601
|
+
# The private DNS name to assign to the VPC endpoint service.
|
8602
|
+
# @return [String]
|
8603
|
+
#
|
8599
8604
|
# @!attribute [rw] network_load_balancer_arns
|
8600
8605
|
# The Amazon Resource Names (ARNs) of one or more Network Load
|
8601
8606
|
# Balancers for your service.
|
8602
8607
|
# @return [Array<String>]
|
8603
8608
|
#
|
8604
8609
|
# @!attribute [rw] client_token
|
8605
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8610
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8606
8611
|
# idempotency of the request. For more information, see [How to Ensure
|
8607
8612
|
# Idempotency][1].
|
8608
8613
|
#
|
@@ -8616,6 +8621,7 @@ module Aws::EC2
|
|
8616
8621
|
class CreateVpcEndpointServiceConfigurationRequest < Struct.new(
|
8617
8622
|
:dry_run,
|
8618
8623
|
:acceptance_required,
|
8624
|
+
:private_dns_name,
|
8619
8625
|
:network_load_balancer_arns,
|
8620
8626
|
:client_token)
|
8621
8627
|
include Aws::Structure
|
@@ -8626,7 +8632,7 @@ module Aws::EC2
|
|
8626
8632
|
# @return [Types::ServiceConfiguration]
|
8627
8633
|
#
|
8628
8634
|
# @!attribute [rw] client_token
|
8629
|
-
# Unique, case-sensitive identifier you provide to ensure the
|
8635
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
8630
8636
|
# idempotency of the request.
|
8631
8637
|
# @return [String]
|
8632
8638
|
#
|
@@ -19896,7 +19902,7 @@ module Aws::EC2
|
|
19896
19902
|
# @!attribute [rw] filters
|
19897
19903
|
# One or more filters.
|
19898
19904
|
#
|
19899
|
-
# * `connection-notification-arn` - The ARN of SNS topic for the
|
19905
|
+
# * `connection-notification-arn` - The ARN of the SNS topic for the
|
19900
19906
|
# notification.
|
19901
19907
|
#
|
19902
19908
|
# * `connection-notification-id` - The ID of the notification.
|
@@ -19991,8 +19997,8 @@ module Aws::EC2
|
|
19991
19997
|
# The maximum number of results to return for the request in a single
|
19992
19998
|
# page. The remaining results of the initial request can be seen by
|
19993
19999
|
# sending another request with the returned `NextToken` value. This
|
19994
|
-
# value can be between 5 and
|
19995
|
-
# larger than
|
20000
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
20001
|
+
# larger than 1,000, only 1,000 results are returned.
|
19996
20002
|
# @return [Integer]
|
19997
20003
|
#
|
19998
20004
|
# @!attribute [rw] next_token
|
@@ -20078,8 +20084,8 @@ module Aws::EC2
|
|
20078
20084
|
# The maximum number of results to return for the request in a single
|
20079
20085
|
# page. The remaining results of the initial request can be seen by
|
20080
20086
|
# sending another request with the returned `NextToken` value. This
|
20081
|
-
# value can be between 5 and
|
20082
|
-
# larger than
|
20087
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
20088
|
+
# larger than 1,000, only 1,000 results are returned.
|
20083
20089
|
# @return [Integer]
|
20084
20090
|
#
|
20085
20091
|
# @!attribute [rw] next_token
|
@@ -20154,8 +20160,8 @@ module Aws::EC2
|
|
20154
20160
|
# The maximum number of results to return for the request in a single
|
20155
20161
|
# page. The remaining results of the initial request can be seen by
|
20156
20162
|
# sending another request with the returned `NextToken` value. This
|
20157
|
-
# value can be between 5 and
|
20158
|
-
# larger than
|
20163
|
+
# value can be between 5 and 1,000; if `MaxResults` is given a value
|
20164
|
+
# larger than 1,000, only 1,000 results are returned.
|
20159
20165
|
# @return [Integer]
|
20160
20166
|
#
|
20161
20167
|
# @!attribute [rw] next_token
|
@@ -20222,7 +20228,7 @@ module Aws::EC2
|
|
20222
20228
|
# @!attribute [rw] filters
|
20223
20229
|
# One or more filters.
|
20224
20230
|
#
|
20225
|
-
# * `service-name
|
20231
|
+
# * `service-name` - The name of the service.
|
20226
20232
|
#
|
20227
20233
|
# * `tag`\:<key> - The key/value combination of a tag assigned
|
20228
20234
|
# to the resource. Use the tag key in the filter name and the tag
|
@@ -20240,7 +20246,7 @@ module Aws::EC2
|
|
20240
20246
|
# returns a token that you can specify in a subsequent call to get the
|
20241
20247
|
# next set of results.
|
20242
20248
|
#
|
20243
|
-
# Constraint: If the value is greater than
|
20249
|
+
# Constraint: If the value is greater than 1,000, we return only 1,000
|
20244
20250
|
# items.
|
20245
20251
|
# @return [Integer]
|
20246
20252
|
#
|
@@ -20316,11 +20322,11 @@ module Aws::EC2
|
|
20316
20322
|
# @!attribute [rw] filters
|
20317
20323
|
# One or more filters.
|
20318
20324
|
#
|
20319
|
-
# * `service-name
|
20325
|
+
# * `service-name` - The name of the service.
|
20320
20326
|
#
|
20321
|
-
# * `vpc-id
|
20327
|
+
# * `vpc-id` - The ID of the VPC in which the endpoint resides.
|
20322
20328
|
#
|
20323
|
-
# * `vpc-endpoint-id
|
20329
|
+
# * `vpc-endpoint-id` - The ID of the endpoint.
|
20324
20330
|
#
|
20325
20331
|
# * `vpc-endpoint-state` - The state of the endpoint
|
20326
20332
|
# (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
|
@@ -20342,7 +20348,7 @@ module Aws::EC2
|
|
20342
20348
|
# returns a token that you can specify in a subsequent call to get the
|
20343
20349
|
# next set of results.
|
20344
20350
|
#
|
20345
|
-
# Constraint: If the value is greater than
|
20351
|
+
# Constraint: If the value is greater than 1,000, we return only 1,000
|
20346
20352
|
# items.
|
20347
20353
|
# @return [Integer]
|
20348
20354
|
#
|
@@ -28805,6 +28811,24 @@ module Aws::EC2
|
|
28805
28811
|
include Aws::Structure
|
28806
28812
|
end
|
28807
28813
|
|
28814
|
+
# The last error that occurred for a VPC endpoint.
|
28815
|
+
#
|
28816
|
+
# @!attribute [rw] message
|
28817
|
+
# The error message for the VPC endpoint error.
|
28818
|
+
# @return [String]
|
28819
|
+
#
|
28820
|
+
# @!attribute [rw] code
|
28821
|
+
# The error code for the VPC endpoint error.
|
28822
|
+
# @return [String]
|
28823
|
+
#
|
28824
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LastError AWS API Documentation
|
28825
|
+
#
|
28826
|
+
class LastError < Struct.new(
|
28827
|
+
:message,
|
28828
|
+
:code)
|
28829
|
+
include Aws::Structure
|
28830
|
+
end
|
28831
|
+
|
28808
28832
|
# Describes a launch permission.
|
28809
28833
|
#
|
28810
28834
|
# @note When making an API call, you may pass LaunchPermission
|
@@ -32829,7 +32853,7 @@ module Aws::EC2
|
|
32829
32853
|
# @return [Array<String>]
|
32830
32854
|
#
|
32831
32855
|
# @!attribute [rw] private_dns_enabled
|
32832
|
-
# (Interface endpoint)
|
32856
|
+
# (Interface endpoint) Indicates whether a private hosted zone is
|
32833
32857
|
# associated with the VPC.
|
32834
32858
|
# @return [Boolean]
|
32835
32859
|
#
|
@@ -32868,6 +32892,8 @@ module Aws::EC2
|
|
32868
32892
|
# {
|
32869
32893
|
# dry_run: false,
|
32870
32894
|
# service_id: "ServiceId", # required
|
32895
|
+
# private_dns_name: "String",
|
32896
|
+
# remove_private_dns_name: false,
|
32871
32897
|
# acceptance_required: false,
|
32872
32898
|
# add_network_load_balancer_arns: ["String"],
|
32873
32899
|
# remove_network_load_balancer_arns: ["String"],
|
@@ -32884,9 +32910,17 @@ module Aws::EC2
|
|
32884
32910
|
# The ID of the service.
|
32885
32911
|
# @return [String]
|
32886
32912
|
#
|
32913
|
+
# @!attribute [rw] private_dns_name
|
32914
|
+
# The private DNS name to assign to the endpoint service.
|
32915
|
+
# @return [String]
|
32916
|
+
#
|
32917
|
+
# @!attribute [rw] remove_private_dns_name
|
32918
|
+
# Removes the private DNS name of the endpoint service.
|
32919
|
+
# @return [Boolean]
|
32920
|
+
#
|
32887
32921
|
# @!attribute [rw] acceptance_required
|
32888
|
-
#
|
32889
|
-
# be accepted.
|
32922
|
+
# Indicates whether requests to create an endpoint to your service
|
32923
|
+
# must be accepted.
|
32890
32924
|
# @return [Boolean]
|
32891
32925
|
#
|
32892
32926
|
# @!attribute [rw] add_network_load_balancer_arns
|
@@ -32904,6 +32938,8 @@ module Aws::EC2
|
|
32904
32938
|
class ModifyVpcEndpointServiceConfigurationRequest < Struct.new(
|
32905
32939
|
:dry_run,
|
32906
32940
|
:service_id,
|
32941
|
+
:private_dns_name,
|
32942
|
+
:remove_private_dns_name,
|
32907
32943
|
:acceptance_required,
|
32908
32944
|
:add_network_load_balancer_arns,
|
32909
32945
|
:remove_network_load_balancer_arns)
|
@@ -35027,6 +35063,46 @@ module Aws::EC2
|
|
35027
35063
|
include Aws::Structure
|
35028
35064
|
end
|
35029
35065
|
|
35066
|
+
# Information about the private DNS name for the service endpoint. For
|
35067
|
+
# more information about these parameters, see [VPC Endpoint Service
|
35068
|
+
# Private DNS Name Verification][1] in the *Amazon Virtual Private Cloud
|
35069
|
+
# User Guide*.
|
35070
|
+
#
|
35071
|
+
#
|
35072
|
+
#
|
35073
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/ndpoint-services-dns-validation.html
|
35074
|
+
#
|
35075
|
+
# @!attribute [rw] state
|
35076
|
+
# The verification state of the VPC endpoint service.
|
35077
|
+
#
|
35078
|
+
# >Consumers of the endpoint service can use the private name only
|
35079
|
+
# when the state is `verified`.
|
35080
|
+
# @return [String]
|
35081
|
+
#
|
35082
|
+
# @!attribute [rw] type
|
35083
|
+
# The endpoint service verification type, for example TXT.
|
35084
|
+
# @return [String]
|
35085
|
+
#
|
35086
|
+
# @!attribute [rw] value
|
35087
|
+
# The value the service provider adds to the private DNS name domain
|
35088
|
+
# record before verification.
|
35089
|
+
# @return [String]
|
35090
|
+
#
|
35091
|
+
# @!attribute [rw] name
|
35092
|
+
# The name of the record subdomain the service provider needs to
|
35093
|
+
# create. The service provider adds the `value` text to the `name`.
|
35094
|
+
# @return [String]
|
35095
|
+
#
|
35096
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PrivateDnsNameConfiguration AWS API Documentation
|
35097
|
+
#
|
35098
|
+
class PrivateDnsNameConfiguration < Struct.new(
|
35099
|
+
:state,
|
35100
|
+
:type,
|
35101
|
+
:value,
|
35102
|
+
:name)
|
35103
|
+
include Aws::Structure
|
35104
|
+
end
|
35105
|
+
|
35030
35106
|
# Describes a secondary private IPv4 address for a network interface.
|
35031
35107
|
#
|
35032
35108
|
# @note When making an API call, you may pass PrivateIpAddressSpecification
|
@@ -40918,7 +40994,7 @@ module Aws::EC2
|
|
40918
40994
|
# @return [String]
|
40919
40995
|
#
|
40920
40996
|
# @!attribute [rw] availability_zones
|
40921
|
-
#
|
40997
|
+
# The Availability Zones in which the service is available.
|
40922
40998
|
# @return [Array<String>]
|
40923
40999
|
#
|
40924
41000
|
# @!attribute [rw] acceptance_required
|
@@ -40927,9 +41003,9 @@ module Aws::EC2
|
|
40927
41003
|
# @return [Boolean]
|
40928
41004
|
#
|
40929
41005
|
# @!attribute [rw] manages_vpc_endpoints
|
40930
|
-
# Indicates whether the service manages
|
40931
|
-
#
|
40932
|
-
#
|
41006
|
+
# Indicates whether the service manages its VPC endpoints. Management
|
41007
|
+
# of the service VPC endpoints using the VPC endpoint API is
|
41008
|
+
# restricted.
|
40933
41009
|
# @return [Boolean]
|
40934
41010
|
#
|
40935
41011
|
# @!attribute [rw] network_load_balancer_arns
|
@@ -40945,6 +41021,11 @@ module Aws::EC2
|
|
40945
41021
|
# The private DNS name for the service.
|
40946
41022
|
# @return [String]
|
40947
41023
|
#
|
41024
|
+
# @!attribute [rw] private_dns_name_configuration
|
41025
|
+
# Information about the endpoint service private DNS name
|
41026
|
+
# configuration.
|
41027
|
+
# @return [Types::PrivateDnsNameConfiguration]
|
41028
|
+
#
|
40948
41029
|
# @!attribute [rw] tags
|
40949
41030
|
# Any tags assigned to the service.
|
40950
41031
|
# @return [Array<Types::Tag>]
|
@@ -40962,6 +41043,7 @@ module Aws::EC2
|
|
40962
41043
|
:network_load_balancer_arns,
|
40963
41044
|
:base_endpoint_dns_names,
|
40964
41045
|
:private_dns_name,
|
41046
|
+
:private_dns_name_configuration,
|
40965
41047
|
:tags)
|
40966
41048
|
include Aws::Structure
|
40967
41049
|
end
|
@@ -41006,15 +41088,22 @@ module Aws::EC2
|
|
41006
41088
|
# @return [Boolean]
|
41007
41089
|
#
|
41008
41090
|
# @!attribute [rw] manages_vpc_endpoints
|
41009
|
-
# Indicates whether the service manages
|
41010
|
-
#
|
41011
|
-
#
|
41091
|
+
# Indicates whether the service manages its VPC endpoints. Management
|
41092
|
+
# of the service VPC endpoints using the VPC endpoint API is
|
41093
|
+
# restricted.
|
41012
41094
|
# @return [Boolean]
|
41013
41095
|
#
|
41014
41096
|
# @!attribute [rw] tags
|
41015
41097
|
# Any tags assigned to the service.
|
41016
41098
|
# @return [Array<Types::Tag>]
|
41017
41099
|
#
|
41100
|
+
# @!attribute [rw] private_dns_name_verification_state
|
41101
|
+
# The verification state of the VPC endpoint service.
|
41102
|
+
#
|
41103
|
+
# Consumers of the endpoint service cannot use the private name when
|
41104
|
+
# the state is not `verified`.
|
41105
|
+
# @return [String]
|
41106
|
+
#
|
41018
41107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ServiceDetail AWS API Documentation
|
41019
41108
|
#
|
41020
41109
|
class ServiceDetail < Struct.new(
|
@@ -41028,7 +41117,8 @@ module Aws::EC2
|
|
41028
41117
|
:vpc_endpoint_policy_supported,
|
41029
41118
|
:acceptance_required,
|
41030
41119
|
:manages_vpc_endpoints,
|
41031
|
-
:tags
|
41120
|
+
:tags,
|
41121
|
+
:private_dns_name_verification_state)
|
41032
41122
|
include Aws::Structure
|
41033
41123
|
end
|
41034
41124
|
|
@@ -42714,6 +42804,45 @@ module Aws::EC2
|
|
42714
42804
|
include Aws::Structure
|
42715
42805
|
end
|
42716
42806
|
|
42807
|
+
# @note When making an API call, you may pass StartVpcEndpointServicePrivateDnsVerificationRequest
|
42808
|
+
# data as a hash:
|
42809
|
+
#
|
42810
|
+
# {
|
42811
|
+
# dry_run: false,
|
42812
|
+
# service_id: "ServiceId", # required
|
42813
|
+
# }
|
42814
|
+
#
|
42815
|
+
# @!attribute [rw] dry_run
|
42816
|
+
# Checks whether you have the required permissions for the action,
|
42817
|
+
# without actually making the request, and provides an error response.
|
42818
|
+
# If you have the required permissions, the error response is
|
42819
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
42820
|
+
# @return [Boolean]
|
42821
|
+
#
|
42822
|
+
# @!attribute [rw] service_id
|
42823
|
+
# The ID of the endpoint service.
|
42824
|
+
# @return [String]
|
42825
|
+
#
|
42826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartVpcEndpointServicePrivateDnsVerificationRequest AWS API Documentation
|
42827
|
+
#
|
42828
|
+
class StartVpcEndpointServicePrivateDnsVerificationRequest < Struct.new(
|
42829
|
+
:dry_run,
|
42830
|
+
:service_id)
|
42831
|
+
include Aws::Structure
|
42832
|
+
end
|
42833
|
+
|
42834
|
+
# @!attribute [rw] return_value
|
42835
|
+
# Returns `true` if the request succeeds; otherwise, it returns an
|
42836
|
+
# error.
|
42837
|
+
# @return [Boolean]
|
42838
|
+
#
|
42839
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/StartVpcEndpointServicePrivateDnsVerificationResult AWS API Documentation
|
42840
|
+
#
|
42841
|
+
class StartVpcEndpointServicePrivateDnsVerificationResult < Struct.new(
|
42842
|
+
:return_value)
|
42843
|
+
include Aws::Structure
|
42844
|
+
end
|
42845
|
+
|
42717
42846
|
# Describes a state change.
|
42718
42847
|
#
|
42719
42848
|
# @!attribute [rw] code
|
@@ -45882,7 +46011,7 @@ module Aws::EC2
|
|
45882
46011
|
# @return [Array<String>]
|
45883
46012
|
#
|
45884
46013
|
# @!attribute [rw] groups
|
45885
|
-
# (Interface endpoint) Information about the security groups
|
46014
|
+
# (Interface endpoint) Information about the security groups that are
|
45886
46015
|
# associated with the network interface.
|
45887
46016
|
# @return [Array<Types::SecurityGroupIdentifier>]
|
45888
46017
|
#
|
@@ -45905,7 +46034,7 @@ module Aws::EC2
|
|
45905
46034
|
# @return [Array<Types::DnsEntry>]
|
45906
46035
|
#
|
45907
46036
|
# @!attribute [rw] creation_timestamp
|
45908
|
-
# The date and time the VPC endpoint was created.
|
46037
|
+
# The date and time that the VPC endpoint was created.
|
45909
46038
|
# @return [Time]
|
45910
46039
|
#
|
45911
46040
|
# @!attribute [rw] tags
|
@@ -45916,6 +46045,10 @@ module Aws::EC2
|
|
45916
46045
|
# The ID of the AWS account that owns the VPC endpoint.
|
45917
46046
|
# @return [String]
|
45918
46047
|
#
|
46048
|
+
# @!attribute [rw] last_error
|
46049
|
+
# The last error that occurred for VPC endpoint.
|
46050
|
+
# @return [Types::LastError]
|
46051
|
+
#
|
45919
46052
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
|
45920
46053
|
#
|
45921
46054
|
class VpcEndpoint < Struct.new(
|
@@ -45934,7 +46067,8 @@ module Aws::EC2
|
|
45934
46067
|
:dns_entries,
|
45935
46068
|
:creation_timestamp,
|
45936
46069
|
:tags,
|
45937
|
-
:owner_id
|
46070
|
+
:owner_id,
|
46071
|
+
:last_error)
|
45938
46072
|
include Aws::Structure
|
45939
46073
|
end
|
45940
46074
|
|
@@ -45957,7 +46091,7 @@ module Aws::EC2
|
|
45957
46091
|
# @return [String]
|
45958
46092
|
#
|
45959
46093
|
# @!attribute [rw] creation_timestamp
|
45960
|
-
# The date and time the VPC endpoint was created.
|
46094
|
+
# The date and time that the VPC endpoint was created.
|
45961
46095
|
# @return [Time]
|
45962
46096
|
#
|
45963
46097
|
# @!attribute [rw] dns_entries
|
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.
|
4
|
+
version: 1.130.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:
|
11
|
+
date: 2020-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|