aws-sdk-ec2 1.493.0 → 1.494.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +110 -16
- data/lib/aws-sdk-ec2/client_api.rb +26 -0
- data/lib/aws-sdk-ec2/instance.rb +9 -3
- data/lib/aws-sdk-ec2/placement_group.rb +13 -0
- data/lib/aws-sdk-ec2/resource.rb +29 -3
- data/lib/aws-sdk-ec2/snapshot.rb +51 -0
- data/lib/aws-sdk-ec2/subnet.rb +20 -0
- data/lib/aws-sdk-ec2/types.rb +193 -19
- data/lib/aws-sdk-ec2/vpc.rb +20 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +12 -3
- data/sig/snapshot.rbs +10 -0
- data/sig/types.rbs +21 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4f1235c3d91319e4c76c817bce969cac27c933f16f7b82c8875d74643beb7ece
|
4
|
+
data.tar.gz: 919661431f7d13da7e95a1c3aed0c4649e30c7da4aa5073acbaf03abe69e5087
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 349e524a58c12e368e696d7ce8cce25b5c8531bbe4fea8e3f6337d3e6592b88a8f30d64dcbfb825cc688dbe221431e86fe34d7c13d373f687510ab6a072bbbb7
|
7
|
+
data.tar.gz: a1c89c9bc69b60911d15576d99a9f5922bc14202eae817d6874de794c163d465e7821868741c4065110ef5b38180b29dc5a2ec250f459bdfe44c74c9ae96137b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.494.0 (2024-11-26)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds support for Time-based Copy for EBS Snapshots and Cross Region PrivateLink. Time-based Copy ensures that EBS Snapshots are copied within and across AWS Regions in a specified timeframe. Cross Region PrivateLink enables customers to connect to VPC endpoint services hosted in other AWS Regions.
|
8
|
+
|
4
9
|
1.493.0 (2024-11-21)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.494.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -4986,6 +4986,19 @@ module Aws::EC2
|
|
4986
4986
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
4987
4987
|
# The tags to apply to the new snapshot.
|
4988
4988
|
#
|
4989
|
+
# @option params [Integer] :completion_duration_minutes
|
4990
|
+
# Specify a completion duration, in 15 minute increments, to initiate a
|
4991
|
+
# time-based snapshot copy. Time-based snapshot copy operations complete
|
4992
|
+
# within the specified duration. For more information, see [ Time-based
|
4993
|
+
# copies][1].
|
4994
|
+
#
|
4995
|
+
# If you do not specify a value, the snapshot copy operation is
|
4996
|
+
# completed on a best-effort basis.
|
4997
|
+
#
|
4998
|
+
#
|
4999
|
+
#
|
5000
|
+
# [1]: https://docs.aws.amazon.com/ebs/latest/userguide/time-based-copies.html
|
5001
|
+
#
|
4989
5002
|
# @option params [Boolean] :dry_run
|
4990
5003
|
# Checks whether you have the required permissions for the action,
|
4991
5004
|
# without actually making the request, and provides an error response.
|
@@ -5062,6 +5075,7 @@ module Aws::EC2
|
|
5062
5075
|
# ],
|
5063
5076
|
# },
|
5064
5077
|
# ],
|
5078
|
+
# completion_duration_minutes: 1,
|
5065
5079
|
# dry_run: false,
|
5066
5080
|
# })
|
5067
5081
|
#
|
@@ -12180,6 +12194,9 @@ module Aws::EC2
|
|
12180
12194
|
# * {Types::Snapshot#storage_tier #storage_tier} => String
|
12181
12195
|
# * {Types::Snapshot#restore_expiry_time #restore_expiry_time} => Time
|
12182
12196
|
# * {Types::Snapshot#sse_type #sse_type} => String
|
12197
|
+
# * {Types::Snapshot#transfer_type #transfer_type} => String
|
12198
|
+
# * {Types::Snapshot#completion_duration_minutes #completion_duration_minutes} => Integer
|
12199
|
+
# * {Types::Snapshot#completion_time #completion_time} => Time
|
12183
12200
|
# * {Types::Snapshot#snapshot_id #snapshot_id} => String
|
12184
12201
|
# * {Types::Snapshot#volume_id #volume_id} => String
|
12185
12202
|
# * {Types::Snapshot#state #state} => String
|
@@ -12247,6 +12264,9 @@ module Aws::EC2
|
|
12247
12264
|
# resp.storage_tier #=> String, one of "archive", "standard"
|
12248
12265
|
# resp.restore_expiry_time #=> Time
|
12249
12266
|
# resp.sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
12267
|
+
# resp.transfer_type #=> String, one of "time-based", "standard"
|
12268
|
+
# resp.completion_duration_minutes #=> Integer
|
12269
|
+
# resp.completion_time #=> Time
|
12250
12270
|
# resp.snapshot_id #=> String
|
12251
12271
|
# resp.volume_id #=> String
|
12252
12272
|
# resp.state #=> String, one of "pending", "completed", "error", "recoverable", "recovering"
|
@@ -15382,6 +15402,10 @@ module Aws::EC2
|
|
15382
15402
|
# @option params [Array<Types::SubnetConfiguration>] :subnet_configurations
|
15383
15403
|
# The subnet configurations for the endpoint.
|
15384
15404
|
#
|
15405
|
+
# @option params [String] :service_region
|
15406
|
+
# The Region where the service is hosted. The default is the current
|
15407
|
+
# Region.
|
15408
|
+
#
|
15385
15409
|
# @return [Types::CreateVpcEndpointResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15386
15410
|
#
|
15387
15411
|
# * {Types::CreateVpcEndpointResult#vpc_endpoint #vpc_endpoint} => Types::VpcEndpoint
|
@@ -15423,6 +15447,7 @@ module Aws::EC2
|
|
15423
15447
|
# ipv_6: "String",
|
15424
15448
|
# },
|
15425
15449
|
# ],
|
15450
|
+
# service_region: "String",
|
15426
15451
|
# })
|
15427
15452
|
#
|
15428
15453
|
# @example Response structure
|
@@ -15457,6 +15482,7 @@ module Aws::EC2
|
|
15457
15482
|
# resp.vpc_endpoint.owner_id #=> String
|
15458
15483
|
# resp.vpc_endpoint.last_error.message #=> String
|
15459
15484
|
# resp.vpc_endpoint.last_error.code #=> String
|
15485
|
+
# resp.vpc_endpoint.service_region #=> String
|
15460
15486
|
# resp.client_token #=> String
|
15461
15487
|
#
|
15462
15488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint AWS API Documentation
|
@@ -15534,6 +15560,7 @@ module Aws::EC2
|
|
15534
15560
|
# resp.connection_notification.connection_events #=> Array
|
15535
15561
|
# resp.connection_notification.connection_events[0] #=> String
|
15536
15562
|
# resp.connection_notification.connection_notification_state #=> String, one of "Enabled", "Disabled"
|
15563
|
+
# resp.connection_notification.service_region #=> String
|
15537
15564
|
# resp.client_token #=> String
|
15538
15565
|
#
|
15539
15566
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointConnectionNotification AWS API Documentation
|
@@ -15593,6 +15620,9 @@ module Aws::EC2
|
|
15593
15620
|
# The supported IP address types. The possible values are `ipv4` and
|
15594
15621
|
# `ipv6`.
|
15595
15622
|
#
|
15623
|
+
# @option params [Array<String>] :supported_regions
|
15624
|
+
# The Regions from which service consumers can access the service.
|
15625
|
+
#
|
15596
15626
|
# @option params [String] :client_token
|
15597
15627
|
# Unique, case-sensitive identifier that you provide to ensure the
|
15598
15628
|
# idempotency of the request. For more information, see [How to ensure
|
@@ -15619,6 +15649,7 @@ module Aws::EC2
|
|
15619
15649
|
# network_load_balancer_arns: ["String"],
|
15620
15650
|
# gateway_load_balancer_arns: ["String"],
|
15621
15651
|
# supported_ip_address_types: ["String"],
|
15652
|
+
# supported_regions: ["String"],
|
15622
15653
|
# client_token: "String",
|
15623
15654
|
# tag_specifications: [
|
15624
15655
|
# {
|
@@ -15661,6 +15692,10 @@ module Aws::EC2
|
|
15661
15692
|
# resp.service_configuration.tags #=> Array
|
15662
15693
|
# resp.service_configuration.tags[0].key #=> String
|
15663
15694
|
# resp.service_configuration.tags[0].value #=> String
|
15695
|
+
# resp.service_configuration.supported_regions #=> Array
|
15696
|
+
# resp.service_configuration.supported_regions[0].region #=> String
|
15697
|
+
# resp.service_configuration.supported_regions[0].service_state #=> String
|
15698
|
+
# resp.service_configuration.remote_access_enabled #=> Boolean
|
15664
15699
|
# resp.client_token #=> String
|
15665
15700
|
#
|
15666
15701
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointServiceConfiguration AWS API Documentation
|
@@ -25856,6 +25891,12 @@ module Aws::EC2
|
|
25856
25891
|
# `impaired` \| `initializing` \| `insufficient-data` \|
|
25857
25892
|
# `not-applicable`).
|
25858
25893
|
#
|
25894
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
25895
|
+
# managed instance.
|
25896
|
+
#
|
25897
|
+
# * `operator.principal` - The principal that manages the instance. Only
|
25898
|
+
# valid for managed instances, where `managed` is `true`.
|
25899
|
+
#
|
25859
25900
|
# * `system-status.reachability` - Filters on system status where the
|
25860
25901
|
# name is `reachability` (`passed` \| `failed` \| `initializing` \|
|
25861
25902
|
# `insufficient-data`).
|
@@ -26843,6 +26884,13 @@ module Aws::EC2
|
|
26843
26884
|
# * `network-interface.network-interface-id` - The ID of the network
|
26844
26885
|
# interface.
|
26845
26886
|
#
|
26887
|
+
# * `network-interface.operator.managed` - A Boolean that indicates
|
26888
|
+
# whether the instance has a managed network interface.
|
26889
|
+
#
|
26890
|
+
# * `network-interface.operator.principal` - The principal that manages
|
26891
|
+
# the network interface. Only valid for instances with managed network
|
26892
|
+
# interfaces, where `managed` is `true`.
|
26893
|
+
#
|
26846
26894
|
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
26847
26895
|
#
|
26848
26896
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
@@ -26882,6 +26930,12 @@ module Aws::EC2
|
|
26882
26930
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
26883
26931
|
# interface.
|
26884
26932
|
#
|
26933
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
26934
|
+
# managed instance.
|
26935
|
+
#
|
26936
|
+
# * `operator.principal` - The principal that manages the instance. Only
|
26937
|
+
# valid for managed instances, where `managed` is `true`.
|
26938
|
+
#
|
26885
26939
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
26886
26940
|
#
|
26887
26941
|
# * `owner-id` - The Amazon Web Services account ID of the instance
|
@@ -31330,6 +31384,13 @@ module Aws::EC2
|
|
31330
31384
|
#
|
31331
31385
|
# * `network-interface-id` - The ID of the network interface.
|
31332
31386
|
#
|
31387
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
31388
|
+
# managed network interface.
|
31389
|
+
#
|
31390
|
+
# * `operator.principal` - The principal that manages the network
|
31391
|
+
# interface. Only valid for managed network interfaces, where
|
31392
|
+
# `managed` is `true`.
|
31393
|
+
#
|
31333
31394
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
31334
31395
|
# interface owner.
|
31335
31396
|
#
|
@@ -33966,6 +34027,9 @@ module Aws::EC2
|
|
33966
34027
|
# resp.snapshots[0].storage_tier #=> String, one of "archive", "standard"
|
33967
34028
|
# resp.snapshots[0].restore_expiry_time #=> Time
|
33968
34029
|
# resp.snapshots[0].sse_type #=> String, one of "sse-ebs", "sse-kms", "none"
|
34030
|
+
# resp.snapshots[0].transfer_type #=> String, one of "time-based", "standard"
|
34031
|
+
# resp.snapshots[0].completion_duration_minutes #=> Integer
|
34032
|
+
# resp.snapshots[0].completion_time #=> Time
|
33969
34033
|
# resp.snapshots[0].snapshot_id #=> String
|
33970
34034
|
# resp.snapshots[0].volume_id #=> String
|
33971
34035
|
# resp.snapshots[0].state #=> String, one of "pending", "completed", "error", "recoverable", "recovering"
|
@@ -37741,13 +37805,19 @@ module Aws::EC2
|
|
37741
37805
|
# * `encrypted` - Indicates whether the volume is encrypted (`true` \|
|
37742
37806
|
# `false`)
|
37743
37807
|
#
|
37744
|
-
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
37745
|
-
# Multi-Attach (`true` \| `false`)
|
37746
|
-
#
|
37747
37808
|
# * `fast-restored` - Indicates whether the volume was created from a
|
37748
37809
|
# snapshot that is enabled for fast snapshot restore (`true` \|
|
37749
37810
|
# `false`).
|
37750
37811
|
#
|
37812
|
+
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
37813
|
+
# Multi-Attach (`true` \| `false`)
|
37814
|
+
#
|
37815
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
37816
|
+
# managed volume.
|
37817
|
+
#
|
37818
|
+
# * `operator.principal` - The principal that manages the volume. Only
|
37819
|
+
# valid for managed volumes, where `managed` is `true`.
|
37820
|
+
#
|
37751
37821
|
# * `size` - The size of the volume, in GiB.
|
37752
37822
|
#
|
37753
37823
|
# * `snapshot-id` - The snapshot from which the volume was created.
|
@@ -38479,6 +38549,7 @@ module Aws::EC2
|
|
38479
38549
|
# resp.connection_notification_set[0].connection_events #=> Array
|
38480
38550
|
# resp.connection_notification_set[0].connection_events[0] #=> String
|
38481
38551
|
# resp.connection_notification_set[0].connection_notification_state #=> String, one of "Enabled", "Disabled"
|
38552
|
+
# resp.connection_notification_set[0].service_region #=> String
|
38482
38553
|
# resp.next_token #=> String
|
38483
38554
|
#
|
38484
38555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnectionNotifications AWS API Documentation
|
@@ -38509,6 +38580,9 @@ module Aws::EC2
|
|
38509
38580
|
# * `vpc-endpoint-owner` - The ID of the Amazon Web Services account ID
|
38510
38581
|
# that owns the endpoint.
|
38511
38582
|
#
|
38583
|
+
# * `vpc-endpoint-region` - The Region of the endpoint or `cross-region`
|
38584
|
+
# to find endpoints for other Regions.
|
38585
|
+
#
|
38512
38586
|
# * `vpc-endpoint-state` - The state of the endpoint
|
38513
38587
|
# (`pendingAcceptance` \| `pending` \| `available` \| `deleting` \|
|
38514
38588
|
# `deleted` \| `rejected` \| `failed`).
|
@@ -38566,6 +38640,7 @@ module Aws::EC2
|
|
38566
38640
|
# resp.vpc_endpoint_connections[0].tags #=> Array
|
38567
38641
|
# resp.vpc_endpoint_connections[0].tags[0].key #=> String
|
38568
38642
|
# resp.vpc_endpoint_connections[0].tags[0].value #=> String
|
38643
|
+
# resp.vpc_endpoint_connections[0].vpc_endpoint_region #=> String
|
38569
38644
|
# resp.next_token #=> String
|
38570
38645
|
#
|
38571
38646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointConnections AWS API Documentation
|
@@ -38673,6 +38748,10 @@ module Aws::EC2
|
|
38673
38748
|
# resp.service_configurations[0].tags #=> Array
|
38674
38749
|
# resp.service_configurations[0].tags[0].key #=> String
|
38675
38750
|
# resp.service_configurations[0].tags[0].value #=> String
|
38751
|
+
# resp.service_configurations[0].supported_regions #=> Array
|
38752
|
+
# resp.service_configurations[0].supported_regions[0].region #=> String
|
38753
|
+
# resp.service_configurations[0].supported_regions[0].service_state #=> String
|
38754
|
+
# resp.service_configurations[0].remote_access_enabled #=> Boolean
|
38676
38755
|
# resp.next_token #=> String
|
38677
38756
|
#
|
38678
38757
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServiceConfigurations AWS API Documentation
|
@@ -38784,6 +38863,8 @@ module Aws::EC2
|
|
38784
38863
|
#
|
38785
38864
|
# * `service-name` - The name of the service.
|
38786
38865
|
#
|
38866
|
+
# * `service-region` - The Region of the service.
|
38867
|
+
#
|
38787
38868
|
# * `service-type` - The type of service (`Interface` \| `Gateway` \|
|
38788
38869
|
# `GatewayLoadBalancer`).
|
38789
38870
|
#
|
@@ -38812,6 +38893,9 @@ module Aws::EC2
|
|
38812
38893
|
# The token for the next set of items to return. (You received this
|
38813
38894
|
# token from a prior call.)
|
38814
38895
|
#
|
38896
|
+
# @option params [Array<String>] :service_regions
|
38897
|
+
# The service Regions.
|
38898
|
+
#
|
38815
38899
|
# @return [Types::DescribeVpcEndpointServicesResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
38816
38900
|
#
|
38817
38901
|
# * {Types::DescribeVpcEndpointServicesResult#service_names #service_names} => Array<String>
|
@@ -38831,6 +38915,7 @@ module Aws::EC2
|
|
38831
38915
|
# ],
|
38832
38916
|
# max_results: 1,
|
38833
38917
|
# next_token: "String",
|
38918
|
+
# service_regions: ["String"],
|
38834
38919
|
# })
|
38835
38920
|
#
|
38836
38921
|
# @example Response structure
|
@@ -38842,6 +38927,7 @@ module Aws::EC2
|
|
38842
38927
|
# resp.service_details[0].service_id #=> String
|
38843
38928
|
# resp.service_details[0].service_type #=> Array
|
38844
38929
|
# resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway", "GatewayLoadBalancer"
|
38930
|
+
# resp.service_details[0].service_region #=> String
|
38845
38931
|
# resp.service_details[0].availability_zones #=> Array
|
38846
38932
|
# resp.service_details[0].availability_zones[0] #=> String
|
38847
38933
|
# resp.service_details[0].owner #=> String
|
@@ -38892,6 +38978,8 @@ module Aws::EC2
|
|
38892
38978
|
#
|
38893
38979
|
# * `service-name` - The name of the service.
|
38894
38980
|
#
|
38981
|
+
# * `service-region` - The Region of the service.
|
38982
|
+
#
|
38895
38983
|
# * `tag`:<key> - The key/value combination of a tag assigned to
|
38896
38984
|
# the resource. Use the tag key in the filter name and the tag value
|
38897
38985
|
# as the filter value. For example, to find all resources that have a
|
@@ -38980,6 +39068,7 @@ module Aws::EC2
|
|
38980
39068
|
# resp.vpc_endpoints[0].owner_id #=> String
|
38981
39069
|
# resp.vpc_endpoints[0].last_error.message #=> String
|
38982
39070
|
# resp.vpc_endpoints[0].last_error.code #=> String
|
39071
|
+
# resp.vpc_endpoints[0].service_region #=> String
|
38983
39072
|
# resp.next_token #=> String
|
38984
39073
|
#
|
38985
39074
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints AWS API Documentation
|
@@ -53059,11 +53148,8 @@ module Aws::EC2
|
|
53059
53148
|
req.send_request(options)
|
53060
53149
|
end
|
53061
53150
|
|
53062
|
-
# Modifies the attributes of
|
53063
|
-
#
|
53064
|
-
# for your service, and you can specify whether acceptance is required
|
53065
|
-
# for requests to connect to your endpoint service through an interface
|
53066
|
-
# VPC endpoint.
|
53151
|
+
# Modifies the attributes of the specified VPC endpoint service
|
53152
|
+
# configuration.
|
53067
53153
|
#
|
53068
53154
|
# If you set or modify the private DNS name, you must prove that you own
|
53069
53155
|
# the private DNS domain name.
|
@@ -53086,30 +53172,36 @@ module Aws::EC2
|
|
53086
53172
|
# endpoint service.
|
53087
53173
|
#
|
53088
53174
|
# @option params [Boolean] :acceptance_required
|
53089
|
-
# Indicates whether requests to create an endpoint to
|
53175
|
+
# Indicates whether requests to create an endpoint to the service must
|
53090
53176
|
# be accepted.
|
53091
53177
|
#
|
53092
53178
|
# @option params [Array<String>] :add_network_load_balancer_arns
|
53093
53179
|
# The Amazon Resource Names (ARNs) of Network Load Balancers to add to
|
53094
|
-
#
|
53180
|
+
# the service configuration.
|
53095
53181
|
#
|
53096
53182
|
# @option params [Array<String>] :remove_network_load_balancer_arns
|
53097
53183
|
# The Amazon Resource Names (ARNs) of Network Load Balancers to remove
|
53098
|
-
# from
|
53184
|
+
# from the service configuration.
|
53099
53185
|
#
|
53100
53186
|
# @option params [Array<String>] :add_gateway_load_balancer_arns
|
53101
53187
|
# The Amazon Resource Names (ARNs) of Gateway Load Balancers to add to
|
53102
|
-
#
|
53188
|
+
# the service configuration.
|
53103
53189
|
#
|
53104
53190
|
# @option params [Array<String>] :remove_gateway_load_balancer_arns
|
53105
53191
|
# The Amazon Resource Names (ARNs) of Gateway Load Balancers to remove
|
53106
|
-
# from
|
53192
|
+
# from the service configuration.
|
53107
53193
|
#
|
53108
53194
|
# @option params [Array<String>] :add_supported_ip_address_types
|
53109
|
-
# The IP address types to add to
|
53195
|
+
# The IP address types to add to the service configuration.
|
53110
53196
|
#
|
53111
53197
|
# @option params [Array<String>] :remove_supported_ip_address_types
|
53112
|
-
# The IP address types to remove from
|
53198
|
+
# The IP address types to remove from the service configuration.
|
53199
|
+
#
|
53200
|
+
# @option params [Array<String>] :add_supported_regions
|
53201
|
+
# The supported Regions to add to the service configuration.
|
53202
|
+
#
|
53203
|
+
# @option params [Array<String>] :remove_supported_regions
|
53204
|
+
# The supported Regions to remove from the service configuration.
|
53113
53205
|
#
|
53114
53206
|
# @return [Types::ModifyVpcEndpointServiceConfigurationResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
53115
53207
|
#
|
@@ -53129,6 +53221,8 @@ module Aws::EC2
|
|
53129
53221
|
# remove_gateway_load_balancer_arns: ["String"],
|
53130
53222
|
# add_supported_ip_address_types: ["String"],
|
53131
53223
|
# remove_supported_ip_address_types: ["String"],
|
53224
|
+
# add_supported_regions: ["String"],
|
53225
|
+
# remove_supported_regions: ["String"],
|
53132
53226
|
# })
|
53133
53227
|
#
|
53134
53228
|
# @example Response structure
|
@@ -61833,7 +61927,7 @@ module Aws::EC2
|
|
61833
61927
|
tracer: tracer
|
61834
61928
|
)
|
61835
61929
|
context[:gem_name] = 'aws-sdk-ec2'
|
61836
|
-
context[:gem_version] = '1.
|
61930
|
+
context[:gem_version] = '1.494.0'
|
61837
61931
|
Seahorse::Client::Request.new(handlers, context)
|
61838
61932
|
end
|
61839
61933
|
|
@@ -2837,6 +2837,8 @@ module Aws::EC2
|
|
2837
2837
|
Snapshot = Shapes::StructureShape.new(name: 'Snapshot')
|
2838
2838
|
SnapshotAttributeName = Shapes::StringShape.new(name: 'SnapshotAttributeName')
|
2839
2839
|
SnapshotBlockPublicAccessState = Shapes::StringShape.new(name: 'SnapshotBlockPublicAccessState')
|
2840
|
+
SnapshotCompletionDurationMinutesRequest = Shapes::IntegerShape.new(name: 'SnapshotCompletionDurationMinutesRequest')
|
2841
|
+
SnapshotCompletionDurationMinutesResponse = Shapes::IntegerShape.new(name: 'SnapshotCompletionDurationMinutesResponse')
|
2840
2842
|
SnapshotDetail = Shapes::StructureShape.new(name: 'SnapshotDetail')
|
2841
2843
|
SnapshotDetailList = Shapes::ListShape.new(name: 'SnapshotDetailList')
|
2842
2844
|
SnapshotDiskContainer = Shapes::StructureShape.new(name: 'SnapshotDiskContainer')
|
@@ -2940,6 +2942,8 @@ module Aws::EC2
|
|
2940
2942
|
SupportedAdditionalProcessorFeature = Shapes::StringShape.new(name: 'SupportedAdditionalProcessorFeature')
|
2941
2943
|
SupportedAdditionalProcessorFeatureList = Shapes::ListShape.new(name: 'SupportedAdditionalProcessorFeatureList')
|
2942
2944
|
SupportedIpAddressTypes = Shapes::ListShape.new(name: 'SupportedIpAddressTypes')
|
2945
|
+
SupportedRegionDetail = Shapes::StructureShape.new(name: 'SupportedRegionDetail')
|
2946
|
+
SupportedRegionSet = Shapes::ListShape.new(name: 'SupportedRegionSet')
|
2943
2947
|
Tag = Shapes::StructureShape.new(name: 'Tag')
|
2944
2948
|
TagDescription = Shapes::StructureShape.new(name: 'TagDescription')
|
2945
2949
|
TagDescriptionList = Shapes::ListShape.new(name: 'TagDescriptionList')
|
@@ -3012,6 +3016,7 @@ module Aws::EC2
|
|
3012
3016
|
TrafficMirrorTargetType = Shapes::StringShape.new(name: 'TrafficMirrorTargetType')
|
3013
3017
|
TrafficMirroringMaxResults = Shapes::IntegerShape.new(name: 'TrafficMirroringMaxResults')
|
3014
3018
|
TrafficType = Shapes::StringShape.new(name: 'TrafficType')
|
3019
|
+
TransferType = Shapes::StringShape.new(name: 'TransferType')
|
3015
3020
|
TransitAssociationGatewayId = Shapes::StringShape.new(name: 'TransitAssociationGatewayId')
|
3016
3021
|
TransitGateway = Shapes::StructureShape.new(name: 'TransitGateway')
|
3017
3022
|
TransitGatewayAssociation = Shapes::StructureShape.new(name: 'TransitGatewayAssociation')
|
@@ -4629,6 +4634,7 @@ module Aws::EC2
|
|
4629
4634
|
ConnectionNotification.add_member(:connection_notification_arn, Shapes::ShapeRef.new(shape: String, location_name: "connectionNotificationArn"))
|
4630
4635
|
ConnectionNotification.add_member(:connection_events, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "connectionEvents"))
|
4631
4636
|
ConnectionNotification.add_member(:connection_notification_state, Shapes::ShapeRef.new(shape: ConnectionNotificationState, location_name: "connectionNotificationState"))
|
4637
|
+
ConnectionNotification.add_member(:service_region, Shapes::ShapeRef.new(shape: String, location_name: "serviceRegion"))
|
4632
4638
|
ConnectionNotification.struct_class = Types::ConnectionNotification
|
4633
4639
|
|
4634
4640
|
ConnectionNotificationIdsList.member = Shapes::ShapeRef.new(shape: ConnectionNotificationId, location_name: "item")
|
@@ -4702,6 +4708,7 @@ module Aws::EC2
|
|
4702
4708
|
CopySnapshotRequest.add_member(:source_region, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceRegion"))
|
4703
4709
|
CopySnapshotRequest.add_member(:source_snapshot_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "SourceSnapshotId"))
|
4704
4710
|
CopySnapshotRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4711
|
+
CopySnapshotRequest.add_member(:completion_duration_minutes, Shapes::ShapeRef.new(shape: SnapshotCompletionDurationMinutesRequest, location_name: "CompletionDurationMinutes"))
|
4705
4712
|
CopySnapshotRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
4706
4713
|
CopySnapshotRequest.struct_class = Types::CopySnapshotRequest
|
4707
4714
|
|
@@ -5756,6 +5763,7 @@ module Aws::EC2
|
|
5756
5763
|
CreateVpcEndpointRequest.add_member(:private_dns_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "PrivateDnsEnabled"))
|
5757
5764
|
CreateVpcEndpointRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5758
5765
|
CreateVpcEndpointRequest.add_member(:subnet_configurations, Shapes::ShapeRef.new(shape: SubnetConfigurationsList, location_name: "SubnetConfiguration"))
|
5766
|
+
CreateVpcEndpointRequest.add_member(:service_region, Shapes::ShapeRef.new(shape: String, location_name: "ServiceRegion"))
|
5759
5767
|
CreateVpcEndpointRequest.struct_class = Types::CreateVpcEndpointRequest
|
5760
5768
|
|
5761
5769
|
CreateVpcEndpointResult.add_member(:vpc_endpoint, Shapes::ShapeRef.new(shape: VpcEndpoint, location_name: "vpcEndpoint"))
|
@@ -5768,6 +5776,7 @@ module Aws::EC2
|
|
5768
5776
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "NetworkLoadBalancerArn"))
|
5769
5777
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "GatewayLoadBalancerArn"))
|
5770
5778
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "SupportedIpAddressType"))
|
5779
|
+
CreateVpcEndpointServiceConfigurationRequest.add_member(:supported_regions, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "SupportedRegion"))
|
5771
5780
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
|
5772
5781
|
CreateVpcEndpointServiceConfigurationRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
5773
5782
|
CreateVpcEndpointServiceConfigurationRequest.struct_class = Types::CreateVpcEndpointServiceConfigurationRequest
|
@@ -8180,6 +8189,7 @@ module Aws::EC2
|
|
8180
8189
|
DescribeVpcEndpointServicesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
8181
8190
|
DescribeVpcEndpointServicesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: Integer, location_name: "MaxResults"))
|
8182
8191
|
DescribeVpcEndpointServicesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
8192
|
+
DescribeVpcEndpointServicesRequest.add_member(:service_regions, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "ServiceRegion"))
|
8183
8193
|
DescribeVpcEndpointServicesRequest.struct_class = Types::DescribeVpcEndpointServicesRequest
|
8184
8194
|
|
8185
8195
|
DescribeVpcEndpointServicesResult.add_member(:service_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "serviceNameSet"))
|
@@ -12503,6 +12513,8 @@ module Aws::EC2
|
|
12503
12513
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_gateway_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveGatewayLoadBalancerArn"))
|
12504
12514
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddSupportedIpAddressType"))
|
12505
12515
|
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_supported_ip_address_types, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveSupportedIpAddressType"))
|
12516
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:add_supported_regions, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AddSupportedRegion"))
|
12517
|
+
ModifyVpcEndpointServiceConfigurationRequest.add_member(:remove_supported_regions, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RemoveSupportedRegion"))
|
12506
12518
|
ModifyVpcEndpointServiceConfigurationRequest.struct_class = Types::ModifyVpcEndpointServiceConfigurationRequest
|
12507
12519
|
|
12508
12520
|
ModifyVpcEndpointServiceConfigurationResult.add_member(:return, Shapes::ShapeRef.new(shape: Boolean, location_name: "return"))
|
@@ -14570,6 +14582,8 @@ module Aws::EC2
|
|
14570
14582
|
ServiceConfiguration.add_member(:private_dns_name_configuration, Shapes::ShapeRef.new(shape: PrivateDnsNameConfiguration, location_name: "privateDnsNameConfiguration"))
|
14571
14583
|
ServiceConfiguration.add_member(:payer_responsibility, Shapes::ShapeRef.new(shape: PayerResponsibility, location_name: "payerResponsibility"))
|
14572
14584
|
ServiceConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
14585
|
+
ServiceConfiguration.add_member(:supported_regions, Shapes::ShapeRef.new(shape: SupportedRegionSet, location_name: "supportedRegionSet"))
|
14586
|
+
ServiceConfiguration.add_member(:remote_access_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "remoteAccessEnabled"))
|
14573
14587
|
ServiceConfiguration.struct_class = Types::ServiceConfiguration
|
14574
14588
|
|
14575
14589
|
ServiceConfigurationSet.member = Shapes::ShapeRef.new(shape: ServiceConfiguration, location_name: "item")
|
@@ -14577,6 +14591,7 @@ module Aws::EC2
|
|
14577
14591
|
ServiceDetail.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
14578
14592
|
ServiceDetail.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
14579
14593
|
ServiceDetail.add_member(:service_type, Shapes::ShapeRef.new(shape: ServiceTypeDetailSet, location_name: "serviceType"))
|
14594
|
+
ServiceDetail.add_member(:service_region, Shapes::ShapeRef.new(shape: String, location_name: "serviceRegion"))
|
14580
14595
|
ServiceDetail.add_member(:availability_zones, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "availabilityZoneSet"))
|
14581
14596
|
ServiceDetail.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
|
14582
14597
|
ServiceDetail.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
|
@@ -14612,6 +14627,9 @@ module Aws::EC2
|
|
14612
14627
|
Snapshot.add_member(:storage_tier, Shapes::ShapeRef.new(shape: StorageTier, location_name: "storageTier"))
|
14613
14628
|
Snapshot.add_member(:restore_expiry_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "restoreExpiryTime"))
|
14614
14629
|
Snapshot.add_member(:sse_type, Shapes::ShapeRef.new(shape: SSEType, location_name: "sseType"))
|
14630
|
+
Snapshot.add_member(:transfer_type, Shapes::ShapeRef.new(shape: TransferType, location_name: "transferType"))
|
14631
|
+
Snapshot.add_member(:completion_duration_minutes, Shapes::ShapeRef.new(shape: SnapshotCompletionDurationMinutesResponse, location_name: "completionDurationMinutes"))
|
14632
|
+
Snapshot.add_member(:completion_time, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "completionTime"))
|
14615
14633
|
Snapshot.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: String, location_name: "snapshotId"))
|
14616
14634
|
Snapshot.add_member(:volume_id, Shapes::ShapeRef.new(shape: String, location_name: "volumeId"))
|
14617
14635
|
Snapshot.add_member(:state, Shapes::ShapeRef.new(shape: SnapshotState, location_name: "status"))
|
@@ -15044,6 +15062,12 @@ module Aws::EC2
|
|
15044
15062
|
|
15045
15063
|
SupportedIpAddressTypes.member = Shapes::ShapeRef.new(shape: ServiceConnectivityType, location_name: "item")
|
15046
15064
|
|
15065
|
+
SupportedRegionDetail.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "region"))
|
15066
|
+
SupportedRegionDetail.add_member(:service_state, Shapes::ShapeRef.new(shape: String, location_name: "serviceState"))
|
15067
|
+
SupportedRegionDetail.struct_class = Types::SupportedRegionDetail
|
15068
|
+
|
15069
|
+
SupportedRegionSet.member = Shapes::ShapeRef.new(shape: SupportedRegionDetail, location_name: "item")
|
15070
|
+
|
15047
15071
|
Tag.add_member(:key, Shapes::ShapeRef.new(shape: String, location_name: "key"))
|
15048
15072
|
Tag.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "value"))
|
15049
15073
|
Tag.struct_class = Types::Tag
|
@@ -16131,6 +16155,7 @@ module Aws::EC2
|
|
16131
16155
|
VpcEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
16132
16156
|
VpcEndpoint.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
16133
16157
|
VpcEndpoint.add_member(:last_error, Shapes::ShapeRef.new(shape: LastError, location_name: "lastError"))
|
16158
|
+
VpcEndpoint.add_member(:service_region, Shapes::ShapeRef.new(shape: String, location_name: "serviceRegion"))
|
16134
16159
|
VpcEndpoint.struct_class = Types::VpcEndpoint
|
16135
16160
|
|
16136
16161
|
VpcEndpointConnection.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
@@ -16144,6 +16169,7 @@ module Aws::EC2
|
|
16144
16169
|
VpcEndpointConnection.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "ipAddressType"))
|
16145
16170
|
VpcEndpointConnection.add_member(:vpc_endpoint_connection_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointConnectionId"))
|
16146
16171
|
VpcEndpointConnection.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
16172
|
+
VpcEndpointConnection.add_member(:vpc_endpoint_region, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointRegion"))
|
16147
16173
|
VpcEndpointConnection.struct_class = Types::VpcEndpointConnection
|
16148
16174
|
|
16149
16175
|
VpcEndpointConnectionSet.member = Shapes::ShapeRef.new(shape: VpcEndpointConnection, location_name: "item")
|
data/lib/aws-sdk-ec2/instance.rb
CHANGED
@@ -1649,13 +1649,19 @@ module Aws::EC2
|
|
1649
1649
|
# * `encrypted` - Indicates whether the volume is encrypted (`true` \|
|
1650
1650
|
# `false`)
|
1651
1651
|
#
|
1652
|
-
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
1653
|
-
# Multi-Attach (`true` \| `false`)
|
1654
|
-
#
|
1655
1652
|
# * `fast-restored` - Indicates whether the volume was created from a
|
1656
1653
|
# snapshot that is enabled for fast snapshot restore (`true` \|
|
1657
1654
|
# `false`).
|
1658
1655
|
#
|
1656
|
+
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
1657
|
+
# Multi-Attach (`true` \| `false`)
|
1658
|
+
#
|
1659
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
1660
|
+
# managed volume.
|
1661
|
+
#
|
1662
|
+
# * `operator.principal` - The principal that manages the volume. Only
|
1663
|
+
# valid for managed volumes, where `managed` is `true`.
|
1664
|
+
#
|
1659
1665
|
# * `size` - The size of the volume, in GiB.
|
1660
1666
|
#
|
1661
1667
|
# * `snapshot-id` - The snapshot from which the volume was created.
|
@@ -526,6 +526,13 @@ module Aws::EC2
|
|
526
526
|
# * `network-interface.network-interface-id` - The ID of the network
|
527
527
|
# interface.
|
528
528
|
#
|
529
|
+
# * `network-interface.operator.managed` - A Boolean that indicates
|
530
|
+
# whether the instance has a managed network interface.
|
531
|
+
#
|
532
|
+
# * `network-interface.operator.principal` - The principal that manages
|
533
|
+
# the network interface. Only valid for instances with managed network
|
534
|
+
# interfaces, where `managed` is `true`.
|
535
|
+
#
|
529
536
|
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
530
537
|
#
|
531
538
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
@@ -565,6 +572,12 @@ module Aws::EC2
|
|
565
572
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
566
573
|
# interface.
|
567
574
|
#
|
575
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
576
|
+
# managed instance.
|
577
|
+
#
|
578
|
+
# * `operator.principal` - The principal that manages the instance. Only
|
579
|
+
# valid for managed instances, where `managed` is `true`.
|
580
|
+
#
|
568
581
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
569
582
|
#
|
570
583
|
# * `owner-id` - The Amazon Web Services account ID of the instance
|
data/lib/aws-sdk-ec2/resource.rb
CHANGED
@@ -2718,6 +2718,13 @@ module Aws::EC2
|
|
2718
2718
|
# * `network-interface.network-interface-id` - The ID of the network
|
2719
2719
|
# interface.
|
2720
2720
|
#
|
2721
|
+
# * `network-interface.operator.managed` - A Boolean that indicates
|
2722
|
+
# whether the instance has a managed network interface.
|
2723
|
+
#
|
2724
|
+
# * `network-interface.operator.principal` - The principal that manages
|
2725
|
+
# the network interface. Only valid for instances with managed network
|
2726
|
+
# interfaces, where `managed` is `true`.
|
2727
|
+
#
|
2721
2728
|
# * `network-interface.outpost-arn` - The ARN of the Outpost.
|
2722
2729
|
#
|
2723
2730
|
# * `network-interface.owner-id` - The ID of the owner of the network
|
@@ -2757,6 +2764,12 @@ module Aws::EC2
|
|
2757
2764
|
# * `network-interface.vpc-id` - The ID of the VPC for the network
|
2758
2765
|
# interface.
|
2759
2766
|
#
|
2767
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
2768
|
+
# managed instance.
|
2769
|
+
#
|
2770
|
+
# * `operator.principal` - The principal that manages the instance. Only
|
2771
|
+
# valid for managed instances, where `managed` is `true`.
|
2772
|
+
#
|
2760
2773
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost.
|
2761
2774
|
#
|
2762
2775
|
# * `owner-id` - The Amazon Web Services account ID of the instance
|
@@ -3337,6 +3350,13 @@ module Aws::EC2
|
|
3337
3350
|
#
|
3338
3351
|
# * `network-interface-id` - The ID of the network interface.
|
3339
3352
|
#
|
3353
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
3354
|
+
# managed network interface.
|
3355
|
+
#
|
3356
|
+
# * `operator.principal` - The principal that manages the network
|
3357
|
+
# interface. Only valid for managed network interfaces, where
|
3358
|
+
# `managed` is `true`.
|
3359
|
+
#
|
3340
3360
|
# * `owner-id` - The Amazon Web Services account ID of the network
|
3341
3361
|
# interface owner.
|
3342
3362
|
#
|
@@ -4057,13 +4077,19 @@ module Aws::EC2
|
|
4057
4077
|
# * `encrypted` - Indicates whether the volume is encrypted (`true` \|
|
4058
4078
|
# `false`)
|
4059
4079
|
#
|
4060
|
-
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
4061
|
-
# Multi-Attach (`true` \| `false`)
|
4062
|
-
#
|
4063
4080
|
# * `fast-restored` - Indicates whether the volume was created from a
|
4064
4081
|
# snapshot that is enabled for fast snapshot restore (`true` \|
|
4065
4082
|
# `false`).
|
4066
4083
|
#
|
4084
|
+
# * `multi-attach-enabled` - Indicates whether the volume is enabled for
|
4085
|
+
# Multi-Attach (`true` \| `false`)
|
4086
|
+
#
|
4087
|
+
# * `operator.managed` - A Boolean that indicates whether this is a
|
4088
|
+
# managed volume.
|
4089
|
+
#
|
4090
|
+
# * `operator.principal` - The principal that manages the volume. Only
|
4091
|
+
# valid for managed volumes, where `managed` is `true`.
|
4092
|
+
#
|
4067
4093
|
# * `size` - The size of the volume, in GiB.
|
4068
4094
|
#
|
4069
4095
|
# * `snapshot-id` - The snapshot from which the volume was created.
|