aws-sdk-ec2 1.651.0 → 1.652.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +384 -123
- data/lib/aws-sdk-ec2/client_api.rb +102 -0
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +17 -17
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +2 -2
- data/lib/aws-sdk-ec2/types.rb +383 -3
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +5 -5
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +164 -115
- data/sig/instance.rbs +1 -1
- data/sig/params.rbs +1 -1
- data/sig/resource.rbs +17 -17
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +84 -5
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- metadata +1 -1
data/lib/aws-sdk-ec2/snapshot.rb
CHANGED
|
@@ -388,7 +388,7 @@ module Aws::EC2
|
|
|
388
388
|
# source_region: "String", # required
|
|
389
389
|
# tag_specifications: [
|
|
390
390
|
# {
|
|
391
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
391
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
392
392
|
# tags: [
|
|
393
393
|
# {
|
|
394
394
|
# key: "String",
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
|
@@ -411,7 +411,7 @@ module Aws::EC2
|
|
|
411
411
|
# ],
|
|
412
412
|
# tag_specifications: [
|
|
413
413
|
# {
|
|
414
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
414
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
415
415
|
# tags: [
|
|
416
416
|
# {
|
|
417
417
|
# key: "String",
|
|
@@ -921,7 +921,7 @@ module Aws::EC2
|
|
|
921
921
|
# interface_type: "efa", # accepts efa, efa-only, branch, trunk
|
|
922
922
|
# tag_specifications: [
|
|
923
923
|
# {
|
|
924
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
924
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
925
925
|
# tags: [
|
|
926
926
|
# {
|
|
927
927
|
# key: "String",
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -6718,6 +6718,36 @@ module Aws::EC2
|
|
|
6718
6718
|
# with the source reservation for interruptible Capacity Reservations.
|
|
6719
6719
|
# @return [Types::InterruptionInfo]
|
|
6720
6720
|
#
|
|
6721
|
+
# @!attribute [rw] adjustment_status
|
|
6722
|
+
# The status of the most recent modification to the Capacity
|
|
6723
|
+
# Reservation. A Capacity Reservation can have one of the following
|
|
6724
|
+
# adjustment statuses:
|
|
6725
|
+
#
|
|
6726
|
+
# * `requested` - The modification was requested and is being
|
|
6727
|
+
# processed.
|
|
6728
|
+
#
|
|
6729
|
+
# * `applied` - The modification was applied to the Capacity
|
|
6730
|
+
# Reservation.
|
|
6731
|
+
#
|
|
6732
|
+
# * `rejected` - The modification was not applied and the Capacity
|
|
6733
|
+
# Reservation keeps its existing configuration.
|
|
6734
|
+
#
|
|
6735
|
+
# This field is not returned if the Capacity Reservation has never
|
|
6736
|
+
# been modified.
|
|
6737
|
+
# @return [String]
|
|
6738
|
+
#
|
|
6739
|
+
# @!attribute [rw] adjustment_details
|
|
6740
|
+
# The configuration that the Capacity Reservation will have after the
|
|
6741
|
+
# requested adjustment is applied.
|
|
6742
|
+
# @return [Types::CapacityReservationAdjustmentDetails]
|
|
6743
|
+
#
|
|
6744
|
+
# @!attribute [rw] original_start_date
|
|
6745
|
+
# The start date that you originally requested for the Capacity
|
|
6746
|
+
# Reservation, in the ISO8601 format in the UTC time zone
|
|
6747
|
+
# (`YYYY-MM-DDThh:mm:ss.sssZ`). This value doesn't change when you
|
|
6748
|
+
# push out the start date.
|
|
6749
|
+
# @return [Time]
|
|
6750
|
+
#
|
|
6721
6751
|
# @!attribute [rw] zero_size_preference
|
|
6722
6752
|
# The zero-size preference configured for the interruptible Capacity
|
|
6723
6753
|
# Reservation. A value of `retain` keeps the interruptible Capacity
|
|
@@ -6760,11 +6790,60 @@ module Aws::EC2
|
|
|
6760
6790
|
:interruptible,
|
|
6761
6791
|
:interruptible_capacity_allocation,
|
|
6762
6792
|
:interruption_info,
|
|
6793
|
+
:adjustment_status,
|
|
6794
|
+
:adjustment_details,
|
|
6795
|
+
:original_start_date,
|
|
6763
6796
|
:zero_size_preference)
|
|
6764
6797
|
SENSITIVE = []
|
|
6765
6798
|
include Aws::Structure
|
|
6766
6799
|
end
|
|
6767
6800
|
|
|
6801
|
+
# Describes the configuration that a Capacity Reservation will have
|
|
6802
|
+
# after a pending adjustment is applied.
|
|
6803
|
+
#
|
|
6804
|
+
# @!attribute [rw] start_date
|
|
6805
|
+
# The start date that the Capacity Reservation will have after the
|
|
6806
|
+
# adjustment.
|
|
6807
|
+
# @return [Time]
|
|
6808
|
+
#
|
|
6809
|
+
# @!attribute [rw] end_date
|
|
6810
|
+
# The end date that the Capacity Reservation will have after the
|
|
6811
|
+
# adjustment.
|
|
6812
|
+
# @return [Time]
|
|
6813
|
+
#
|
|
6814
|
+
# @!attribute [rw] commitment_end_date
|
|
6815
|
+
# The date and time at which the commitment duration will expire after
|
|
6816
|
+
# the adjustment.
|
|
6817
|
+
# @return [Time]
|
|
6818
|
+
#
|
|
6819
|
+
# @!attribute [rw] end_date_type
|
|
6820
|
+
# Indicates the way in which the Capacity Reservation will end after
|
|
6821
|
+
# the adjustment. Possible values are:
|
|
6822
|
+
#
|
|
6823
|
+
# * `unlimited` - The Capacity Reservation remains active until you
|
|
6824
|
+
# explicitly cancel it.
|
|
6825
|
+
#
|
|
6826
|
+
# * `limited` - The Capacity Reservation expires automatically at the
|
|
6827
|
+
# date and time given by `endDate`.
|
|
6828
|
+
# @return [String]
|
|
6829
|
+
#
|
|
6830
|
+
# @!attribute [rw] commitment_duration
|
|
6831
|
+
# The commitment duration, in seconds, that the Capacity Reservation
|
|
6832
|
+
# will have after the adjustment.
|
|
6833
|
+
# @return [Integer]
|
|
6834
|
+
#
|
|
6835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationAdjustmentDetails AWS API Documentation
|
|
6836
|
+
#
|
|
6837
|
+
class CapacityReservationAdjustmentDetails < Struct.new(
|
|
6838
|
+
:start_date,
|
|
6839
|
+
:end_date,
|
|
6840
|
+
:commitment_end_date,
|
|
6841
|
+
:end_date_type,
|
|
6842
|
+
:commitment_duration)
|
|
6843
|
+
SENSITIVE = []
|
|
6844
|
+
include Aws::Structure
|
|
6845
|
+
end
|
|
6846
|
+
|
|
6768
6847
|
# Information about a request to assign billing of the unused capacity
|
|
6769
6848
|
# of a Capacity Reservation.
|
|
6770
6849
|
#
|
|
@@ -6888,11 +6967,19 @@ module Aws::EC2
|
|
|
6888
6967
|
# Reservation before this date and time.
|
|
6889
6968
|
# @return [Time]
|
|
6890
6969
|
#
|
|
6970
|
+
# @!attribute [rw] commitment_duration
|
|
6971
|
+
# The commitment duration, in seconds, for the future-dated Capacity
|
|
6972
|
+
# Reservation. This is the minimum duration for which you commit to
|
|
6973
|
+
# having the Capacity Reservation in the `active` state in your
|
|
6974
|
+
# account after it has been delivered.
|
|
6975
|
+
# @return [Integer]
|
|
6976
|
+
#
|
|
6891
6977
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationCommitmentInfo AWS API Documentation
|
|
6892
6978
|
#
|
|
6893
6979
|
class CapacityReservationCommitmentInfo < Struct.new(
|
|
6894
6980
|
:committed_instance_count,
|
|
6895
|
-
:commitment_end_date
|
|
6981
|
+
:commitment_end_date,
|
|
6982
|
+
:commitment_duration)
|
|
6896
6983
|
SENSITIVE = []
|
|
6897
6984
|
include Aws::Structure
|
|
6898
6985
|
end
|
|
@@ -7130,6 +7217,66 @@ module Aws::EC2
|
|
|
7130
7217
|
include Aws::Structure
|
|
7131
7218
|
end
|
|
7132
7219
|
|
|
7220
|
+
# Describes a Capacity Reservation modification quote, which provides
|
|
7221
|
+
# the terms for changing the start date or the commitment of a
|
|
7222
|
+
# future-dated Capacity Reservation.
|
|
7223
|
+
#
|
|
7224
|
+
# @!attribute [rw] capacity_reservation_modification_quote_id
|
|
7225
|
+
# The ID of the modification quote.
|
|
7226
|
+
# @return [String]
|
|
7227
|
+
#
|
|
7228
|
+
# @!attribute [rw] capacity_reservation_id
|
|
7229
|
+
# The ID of the Capacity Reservation associated with the modification
|
|
7230
|
+
# quote.
|
|
7231
|
+
# @return [String]
|
|
7232
|
+
#
|
|
7233
|
+
# @!attribute [rw] create_time
|
|
7234
|
+
# The date and time at which the modification quote was created.
|
|
7235
|
+
# @return [Time]
|
|
7236
|
+
#
|
|
7237
|
+
# @!attribute [rw] expiration_time
|
|
7238
|
+
# The date and time at which the modification quote expires.
|
|
7239
|
+
# @return [Time]
|
|
7240
|
+
#
|
|
7241
|
+
# @!attribute [rw] quote_state
|
|
7242
|
+
# The state of the modification quote itself. Possible values are:
|
|
7243
|
+
#
|
|
7244
|
+
# * `active` - The quote can still be used.
|
|
7245
|
+
#
|
|
7246
|
+
# * `expired` - The quote can no longer be used. A quote becomes
|
|
7247
|
+
# `expired` at its `expirationTime`.
|
|
7248
|
+
# @return [String]
|
|
7249
|
+
#
|
|
7250
|
+
# @!attribute [rw] current_configuration
|
|
7251
|
+
# The configuration that the Capacity Reservation has at the time the
|
|
7252
|
+
# quote was generated.
|
|
7253
|
+
# @return [Types::ModificationQuoteCurrentConfiguration]
|
|
7254
|
+
#
|
|
7255
|
+
# @!attribute [rw] modification_terms
|
|
7256
|
+
# The terms of the modification, including the configuration that the
|
|
7257
|
+
# Capacity Reservation will have if you accept them by using
|
|
7258
|
+
# `ModifyCapacityReservation`.
|
|
7259
|
+
# @return [Types::ModificationTerms]
|
|
7260
|
+
#
|
|
7261
|
+
# @!attribute [rw] tags
|
|
7262
|
+
# The tags assigned to the modification quote.
|
|
7263
|
+
# @return [Array<Types::Tag>]
|
|
7264
|
+
#
|
|
7265
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationModificationQuote AWS API Documentation
|
|
7266
|
+
#
|
|
7267
|
+
class CapacityReservationModificationQuote < Struct.new(
|
|
7268
|
+
:capacity_reservation_modification_quote_id,
|
|
7269
|
+
:capacity_reservation_id,
|
|
7270
|
+
:create_time,
|
|
7271
|
+
:expiration_time,
|
|
7272
|
+
:quote_state,
|
|
7273
|
+
:current_configuration,
|
|
7274
|
+
:modification_terms,
|
|
7275
|
+
:tags)
|
|
7276
|
+
SENSITIVE = []
|
|
7277
|
+
include Aws::Structure
|
|
7278
|
+
end
|
|
7279
|
+
|
|
7133
7280
|
# Describes the strategy for using unused Capacity Reservations for
|
|
7134
7281
|
# fulfilling On-Demand capacity.
|
|
7135
7282
|
#
|
|
@@ -9937,6 +10084,65 @@ module Aws::EC2
|
|
|
9937
10084
|
include Aws::Structure
|
|
9938
10085
|
end
|
|
9939
10086
|
|
|
10087
|
+
# @!attribute [rw] capacity_reservation_id
|
|
10088
|
+
# The ID of the Capacity Reservation.
|
|
10089
|
+
# @return [String]
|
|
10090
|
+
#
|
|
10091
|
+
# @!attribute [rw] new_start_date
|
|
10092
|
+
# The requested new start date for the Capacity Reservation, in the
|
|
10093
|
+
# ISO8601 format in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
|
10094
|
+
# The new start date must be later than the current start date and
|
|
10095
|
+
# within the cumulative 30-day pushout limit.
|
|
10096
|
+
# @return [Time]
|
|
10097
|
+
#
|
|
10098
|
+
# @!attribute [rw] client_token
|
|
10099
|
+
# Unique, case-sensitive identifier that you provide to ensure the
|
|
10100
|
+
# idempotency of the request. For more information, see [Ensure
|
|
10101
|
+
# Idempotency][1].
|
|
10102
|
+
#
|
|
10103
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
10104
|
+
# not need to pass this option.
|
|
10105
|
+
#
|
|
10106
|
+
#
|
|
10107
|
+
#
|
|
10108
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
10109
|
+
# @return [String]
|
|
10110
|
+
#
|
|
10111
|
+
# @!attribute [rw] tag_specifications
|
|
10112
|
+
# The tags to apply to the date change quote.
|
|
10113
|
+
# @return [Array<Types::TagSpecification>]
|
|
10114
|
+
#
|
|
10115
|
+
# @!attribute [rw] dry_run
|
|
10116
|
+
# Checks whether you have the required permissions for the action,
|
|
10117
|
+
# without actually making the request, and provides an error response.
|
|
10118
|
+
# If you have the required permissions, the error response is
|
|
10119
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
10120
|
+
# @return [Boolean]
|
|
10121
|
+
#
|
|
10122
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationDateChangeQuoteRequest AWS API Documentation
|
|
10123
|
+
#
|
|
10124
|
+
class CreateCapacityReservationDateChangeQuoteRequest < Struct.new(
|
|
10125
|
+
:capacity_reservation_id,
|
|
10126
|
+
:new_start_date,
|
|
10127
|
+
:client_token,
|
|
10128
|
+
:tag_specifications,
|
|
10129
|
+
:dry_run)
|
|
10130
|
+
SENSITIVE = []
|
|
10131
|
+
include Aws::Structure
|
|
10132
|
+
end
|
|
10133
|
+
|
|
10134
|
+
# @!attribute [rw] capacity_reservation_modification_quote
|
|
10135
|
+
# Information about the Capacity Reservation date change quote.
|
|
10136
|
+
# @return [Types::CapacityReservationModificationQuote]
|
|
10137
|
+
#
|
|
10138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationDateChangeQuoteResult AWS API Documentation
|
|
10139
|
+
#
|
|
10140
|
+
class CreateCapacityReservationDateChangeQuoteResult < Struct.new(
|
|
10141
|
+
:capacity_reservation_modification_quote)
|
|
10142
|
+
SENSITIVE = []
|
|
10143
|
+
include Aws::Structure
|
|
10144
|
+
end
|
|
10145
|
+
|
|
9940
10146
|
# @!attribute [rw] allocation_strategy
|
|
9941
10147
|
# The strategy used by the Capacity Reservation Fleet to determine
|
|
9942
10148
|
# which of the specified instance types to use. Currently, only the
|
|
@@ -24322,6 +24528,65 @@ module Aws::EC2
|
|
|
24322
24528
|
include Aws::Structure
|
|
24323
24529
|
end
|
|
24324
24530
|
|
|
24531
|
+
# @!attribute [rw] capacity_reservation_modification_quote_ids
|
|
24532
|
+
# The IDs of the date change quotes to describe.
|
|
24533
|
+
# @return [Array<String>]
|
|
24534
|
+
#
|
|
24535
|
+
# @!attribute [rw] max_results
|
|
24536
|
+
# The maximum number of items to return for this request. To get the
|
|
24537
|
+
# next page of items, make another request with the token returned in
|
|
24538
|
+
# the output. For more information, see [Pagination][1].
|
|
24539
|
+
#
|
|
24540
|
+
#
|
|
24541
|
+
#
|
|
24542
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
|
24543
|
+
# @return [Integer]
|
|
24544
|
+
#
|
|
24545
|
+
# @!attribute [rw] next_token
|
|
24546
|
+
# The token to use to retrieve the next page of results.
|
|
24547
|
+
# @return [String]
|
|
24548
|
+
#
|
|
24549
|
+
# @!attribute [rw] dry_run
|
|
24550
|
+
# Checks whether you have the required permissions for the action,
|
|
24551
|
+
# without actually making the request, and provides an error response.
|
|
24552
|
+
# If you have the required permissions, the error response is
|
|
24553
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
|
24554
|
+
# @return [Boolean]
|
|
24555
|
+
#
|
|
24556
|
+
# @!attribute [rw] filters
|
|
24557
|
+
# One or more filters. Filter names and values are case-sensitive.
|
|
24558
|
+
# @return [Array<Types::Filter>]
|
|
24559
|
+
#
|
|
24560
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationDateChangeQuotesRequest AWS API Documentation
|
|
24561
|
+
#
|
|
24562
|
+
class DescribeCapacityReservationDateChangeQuotesRequest < Struct.new(
|
|
24563
|
+
:capacity_reservation_modification_quote_ids,
|
|
24564
|
+
:max_results,
|
|
24565
|
+
:next_token,
|
|
24566
|
+
:dry_run,
|
|
24567
|
+
:filters)
|
|
24568
|
+
SENSITIVE = []
|
|
24569
|
+
include Aws::Structure
|
|
24570
|
+
end
|
|
24571
|
+
|
|
24572
|
+
# @!attribute [rw] capacity_reservation_modification_quotes
|
|
24573
|
+
# Information about the Capacity Reservation date change quotes.
|
|
24574
|
+
# @return [Array<Types::CapacityReservationModificationQuote>]
|
|
24575
|
+
#
|
|
24576
|
+
# @!attribute [rw] next_token
|
|
24577
|
+
# The token to use to retrieve the next page of results. This value is
|
|
24578
|
+
# `null` when there are no more results to return.
|
|
24579
|
+
# @return [String]
|
|
24580
|
+
#
|
|
24581
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityReservationDateChangeQuotesResult AWS API Documentation
|
|
24582
|
+
#
|
|
24583
|
+
class DescribeCapacityReservationDateChangeQuotesResult < Struct.new(
|
|
24584
|
+
:capacity_reservation_modification_quotes,
|
|
24585
|
+
:next_token)
|
|
24586
|
+
SENSITIVE = []
|
|
24587
|
+
include Aws::Structure
|
|
24588
|
+
end
|
|
24589
|
+
|
|
24325
24590
|
# @!attribute [rw] capacity_reservation_fleet_ids
|
|
24326
24591
|
# The IDs of the Capacity Reservation Fleets to describe.
|
|
24327
24592
|
# @return [Array<String>]
|
|
@@ -64306,6 +64571,84 @@ module Aws::EC2
|
|
|
64306
64571
|
include Aws::Structure
|
|
64307
64572
|
end
|
|
64308
64573
|
|
|
64574
|
+
# Describes the configuration that a Capacity Reservation has at the
|
|
64575
|
+
# time a modification quote is generated.
|
|
64576
|
+
#
|
|
64577
|
+
# @!attribute [rw] instance_count
|
|
64578
|
+
# The number of instances in the Capacity Reservation.
|
|
64579
|
+
# @return [Integer]
|
|
64580
|
+
#
|
|
64581
|
+
# @!attribute [rw] reservation_state
|
|
64582
|
+
# The current state of the Capacity Reservation.
|
|
64583
|
+
# @return [String]
|
|
64584
|
+
#
|
|
64585
|
+
# @!attribute [rw] start_date
|
|
64586
|
+
# The start date that the Capacity Reservation has before the quoted
|
|
64587
|
+
# modification is applied.
|
|
64588
|
+
# @return [Time]
|
|
64589
|
+
#
|
|
64590
|
+
# @!attribute [rw] original_start_date
|
|
64591
|
+
# The start date that the Capacity Reservation was originally
|
|
64592
|
+
# requested with. This value does not change when you push out the
|
|
64593
|
+
# start date.
|
|
64594
|
+
# @return [Time]
|
|
64595
|
+
#
|
|
64596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModificationQuoteCurrentConfiguration AWS API Documentation
|
|
64597
|
+
#
|
|
64598
|
+
class ModificationQuoteCurrentConfiguration < Struct.new(
|
|
64599
|
+
:instance_count,
|
|
64600
|
+
:reservation_state,
|
|
64601
|
+
:start_date,
|
|
64602
|
+
:original_start_date)
|
|
64603
|
+
SENSITIVE = []
|
|
64604
|
+
include Aws::Structure
|
|
64605
|
+
end
|
|
64606
|
+
|
|
64607
|
+
# Describes the changes that a Capacity Reservation modification quote
|
|
64608
|
+
# will apply to a Capacity Reservation.
|
|
64609
|
+
#
|
|
64610
|
+
# @!attribute [rw] new_commitment_end_date
|
|
64611
|
+
# The date and time at which the commitment duration will expire after
|
|
64612
|
+
# the modification, in the ISO8601 format in the UTC time zone
|
|
64613
|
+
# (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
|
64614
|
+
# @return [Time]
|
|
64615
|
+
#
|
|
64616
|
+
# @!attribute [rw] new_start_date
|
|
64617
|
+
# The start date that the Capacity Reservation will have after the
|
|
64618
|
+
# modification, in the ISO8601 format in the UTC time zone
|
|
64619
|
+
# (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
|
64620
|
+
# @return [Time]
|
|
64621
|
+
#
|
|
64622
|
+
# @!attribute [rw] new_commitment_duration
|
|
64623
|
+
# The commitment duration, in seconds, that the Capacity Reservation
|
|
64624
|
+
# will have after the modification.
|
|
64625
|
+
# @return [Integer]
|
|
64626
|
+
#
|
|
64627
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModificationReservationUpdate AWS API Documentation
|
|
64628
|
+
#
|
|
64629
|
+
class ModificationReservationUpdate < Struct.new(
|
|
64630
|
+
:new_commitment_end_date,
|
|
64631
|
+
:new_start_date,
|
|
64632
|
+
:new_commitment_duration)
|
|
64633
|
+
SENSITIVE = []
|
|
64634
|
+
include Aws::Structure
|
|
64635
|
+
end
|
|
64636
|
+
|
|
64637
|
+
# Describes the terms of a Capacity Reservation modification quote.
|
|
64638
|
+
#
|
|
64639
|
+
# @!attribute [rw] reservation_update
|
|
64640
|
+
# The changes that will be applied to the Capacity Reservation if you
|
|
64641
|
+
# accept the modification terms.
|
|
64642
|
+
# @return [Types::ModificationReservationUpdate]
|
|
64643
|
+
#
|
|
64644
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModificationTerms AWS API Documentation
|
|
64645
|
+
#
|
|
64646
|
+
class ModificationTerms < Struct.new(
|
|
64647
|
+
:reservation_update)
|
|
64648
|
+
SENSITIVE = []
|
|
64649
|
+
include Aws::Structure
|
|
64650
|
+
end
|
|
64651
|
+
|
|
64309
64652
|
# @!attribute [rw] dry_run
|
|
64310
64653
|
# Checks whether you have the required permissions for the action,
|
|
64311
64654
|
# without actually making the request, and provides an error response.
|
|
@@ -64746,6 +65089,27 @@ module Aws::EC2
|
|
|
64746
65089
|
# completely idle (zero usage).
|
|
64747
65090
|
# @return [String]
|
|
64748
65091
|
#
|
|
65092
|
+
# @!attribute [rw] accept_modification_terms
|
|
65093
|
+
# Indicates that you accept the modification terms of the quote
|
|
65094
|
+
# identified by `QuoteId`. To apply a quoted modification, set this
|
|
65095
|
+
# parameter to `true`.
|
|
65096
|
+
# @return [Boolean]
|
|
65097
|
+
#
|
|
65098
|
+
# @!attribute [rw] start_date
|
|
65099
|
+
# The new start date for the Capacity Reservation, in the ISO8601
|
|
65100
|
+
# format in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`). Applies to
|
|
65101
|
+
# future-dated Capacity Reservations only. Requires a quote from
|
|
65102
|
+
# `CreateCapacityReservationDateChangeQuote`; pass the quote ID in
|
|
65103
|
+
# `QuoteId` with `AcceptModificationTerms` set to `true`.
|
|
65104
|
+
# @return [Time]
|
|
65105
|
+
#
|
|
65106
|
+
# @!attribute [rw] quote_id
|
|
65107
|
+
# The ID of the quote that describes the modification you want to
|
|
65108
|
+
# apply. Generate a quote by using
|
|
65109
|
+
# `CreateCapacityReservationDateChangeQuote`. The quote must be in the
|
|
65110
|
+
# `active` state, and each quote can be used only once.
|
|
65111
|
+
# @return [String]
|
|
65112
|
+
#
|
|
64749
65113
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationRequest AWS API Documentation
|
|
64750
65114
|
#
|
|
64751
65115
|
class ModifyCapacityReservationRequest < Struct.new(
|
|
@@ -64756,7 +65120,10 @@ module Aws::EC2
|
|
|
64756
65120
|
:accept,
|
|
64757
65121
|
:dry_run,
|
|
64758
65122
|
:additional_info,
|
|
64759
|
-
:instance_match_criteria
|
|
65123
|
+
:instance_match_criteria,
|
|
65124
|
+
:accept_modification_terms,
|
|
65125
|
+
:start_date,
|
|
65126
|
+
:quote_id)
|
|
64760
65127
|
SENSITIVE = []
|
|
64761
65128
|
include Aws::Structure
|
|
64762
65129
|
end
|
|
@@ -64766,10 +65133,23 @@ module Aws::EC2
|
|
|
64766
65133
|
# error.
|
|
64767
65134
|
# @return [Boolean]
|
|
64768
65135
|
#
|
|
65136
|
+
# @!attribute [rw] adjustment_status
|
|
65137
|
+
# The status of the requested modification. For a description of each
|
|
65138
|
+
# possible value, see the `adjustmentStatus` field of the
|
|
65139
|
+
# `CapacityReservation` data type.
|
|
65140
|
+
# @return [String]
|
|
65141
|
+
#
|
|
65142
|
+
# @!attribute [rw] adjustment_details
|
|
65143
|
+
# The configuration that the Capacity Reservation will have after the
|
|
65144
|
+
# adjustment is applied.
|
|
65145
|
+
# @return [Types::CapacityReservationAdjustmentDetails]
|
|
65146
|
+
#
|
|
64769
65147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyCapacityReservationResult AWS API Documentation
|
|
64770
65148
|
#
|
|
64771
65149
|
class ModifyCapacityReservationResult < Struct.new(
|
|
64772
|
-
:return
|
|
65150
|
+
:return,
|
|
65151
|
+
:adjustment_status,
|
|
65152
|
+
:adjustment_details)
|
|
64773
65153
|
SENSITIVE = []
|
|
64774
65154
|
include Aws::Structure
|
|
64775
65155
|
end
|
data/lib/aws-sdk-ec2/volume.rb
CHANGED
|
@@ -363,7 +363,7 @@ module Aws::EC2
|
|
|
363
363
|
# outpost_arn: "String",
|
|
364
364
|
# tag_specifications: [
|
|
365
365
|
# {
|
|
366
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
366
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
367
367
|
# tags: [
|
|
368
368
|
# {
|
|
369
369
|
# key: "String",
|
data/lib/aws-sdk-ec2/vpc.rb
CHANGED
|
@@ -377,7 +377,7 @@ module Aws::EC2
|
|
|
377
377
|
# networkacl = vpc.create_network_acl({
|
|
378
378
|
# tag_specifications: [
|
|
379
379
|
# {
|
|
380
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
380
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
381
381
|
# tags: [
|
|
382
382
|
# {
|
|
383
383
|
# key: "String",
|
|
@@ -423,7 +423,7 @@ module Aws::EC2
|
|
|
423
423
|
# routetable = vpc.create_route_table({
|
|
424
424
|
# tag_specifications: [
|
|
425
425
|
# {
|
|
426
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
426
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
427
427
|
# tags: [
|
|
428
428
|
# {
|
|
429
429
|
# key: "String",
|
|
@@ -471,7 +471,7 @@ module Aws::EC2
|
|
|
471
471
|
# group_name: "String", # required
|
|
472
472
|
# tag_specifications: [
|
|
473
473
|
# {
|
|
474
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
474
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
475
475
|
# tags: [
|
|
476
476
|
# {
|
|
477
477
|
# key: "String",
|
|
@@ -522,7 +522,7 @@ module Aws::EC2
|
|
|
522
522
|
# subnet = vpc.create_subnet({
|
|
523
523
|
# tag_specifications: [
|
|
524
524
|
# {
|
|
525
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
525
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
526
526
|
# tags: [
|
|
527
527
|
# {
|
|
528
528
|
# key: "String",
|
|
@@ -872,7 +872,7 @@ module Aws::EC2
|
|
|
872
872
|
# peer_region: "String",
|
|
873
873
|
# tag_specifications: [
|
|
874
874
|
# {
|
|
875
|
-
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check
|
|
875
|
+
# resource_type: "capacity-reservation", # accepts capacity-reservation, client-vpn-endpoint, customer-gateway, carrier-gateway, coip-pool, declarative-policies-report, dedicated-host, dhcp-options, egress-only-internet-gateway, elastic-ip, elastic-gpu, export-image-task, export-instance-task, fleet, fpga-image, host-reservation, image, image-usage-report, import-image-task, import-snapshot-task, instance, instance-event-window, internet-gateway, ipam, ipam-pool, ipam-scope, ipv4pool-ec2, ipv6pool-ec2, key-pair, launch-template, local-gateway, local-gateway-route-table, local-gateway-virtual-interface, local-gateway-virtual-interface-group, local-gateway-route-table-vpc-association, local-gateway-route-table-virtual-interface-group-association, natgateway, network-acl, network-interface, network-insights-analysis, network-insights-path, network-insights-access-scope, network-insights-access-scope-analysis, outpost-lag, placement-group, prefix-list, replace-root-volume-task, reserved-instances, route-table, security-group, security-group-rule, service-link-virtual-interface, snapshot, spot-fleet-request, spot-instances-request, subnet, subnet-cidr-reservation, traffic-mirror-filter, traffic-mirror-session, traffic-mirror-target, transit-gateway, transit-gateway-attachment, transit-gateway-connect-peer, transit-gateway-multicast-domain, transit-gateway-policy-table, transit-gateway-metering-policy, transit-gateway-route-table, transit-gateway-route-table-announcement, volume, vpc, vpc-endpoint, vpc-endpoint-connection, vpc-endpoint-service, vpc-endpoint-service-permission, vpc-peering-connection, vpn-connection, vpn-gateway, vpc-flow-log, capacity-reservation-fleet, traffic-mirror-filter-rule, vpc-endpoint-connection-device-type, verified-access-instance, verified-access-group, verified-access-endpoint, verified-access-policy, verified-access-trust-provider, vpn-connection-device-type, vpc-block-public-access-exclusion, vpc-encryption-control, route-server, route-server-endpoint, route-server-peer, ipam-resource-discovery, ipam-resource-discovery-association, instance-connect-endpoint, verified-access-endpoint-target, ipam-external-resource-verification-token, capacity-block, mac-modification-task, ipam-prefix-list-resolver, ipam-policy, ipam-prefix-list-resolver-target, ipam-internet-registry-association, secondary-interface, secondary-network, secondary-subnet, capacity-manager-data-export, vpn-concentrator, ipam-pool-allocation, capacity-reservation-cancellation-quote, application-status-check, capacity-reservation-modification-quote
|
|
876
876
|
# tags: [
|
|
877
877
|
# {
|
|
878
878
|
# key: "String",
|