aws-sdk-ec2 1.492.0 → 1.493.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 +443 -60
- data/lib/aws-sdk-ec2/client_api.rb +150 -0
- data/lib/aws-sdk-ec2/types.rb +763 -79
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +62 -2
- data/sig/types.rbs +108 -2
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -559,6 +559,59 @@ module Aws::EC2
|
|
559
559
|
include Aws::Structure
|
560
560
|
end
|
561
561
|
|
562
|
+
# Add an Organizational Unit (OU) exclusion to your IPAM. If your IPAM
|
563
|
+
# is integrated with Amazon Web Services Organizations and you add an
|
564
|
+
# organizational unit (OU) exclusion, IPAM will not manage the IP
|
565
|
+
# addresses in accounts in that OU exclusion. There is a limit on the
|
566
|
+
# number of exclusions you can create. For more information, see [Quotas
|
567
|
+
# for your IPAM][1] in the *Amazon VPC IPAM User Guide*.
|
568
|
+
#
|
569
|
+
#
|
570
|
+
#
|
571
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
|
572
|
+
#
|
573
|
+
# @!attribute [rw] organizations_entity_path
|
574
|
+
# An Amazon Web Services Organizations entity path. Build the path for
|
575
|
+
# the OU(s) using Amazon Web Services Organizations IDs separated by a
|
576
|
+
# `/`. Include all child OUs by ending the path with `/*`.
|
577
|
+
#
|
578
|
+
# * Example 1
|
579
|
+
#
|
580
|
+
# * Path to a child OU:
|
581
|
+
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/ou-jkl0-awsddddd/`
|
582
|
+
#
|
583
|
+
# * In this example, `o-a1b2c3d4e5` is the organization ID,
|
584
|
+
# `r-f6g7h8i9j0example` is the root ID , `ou-ghi0-awsccccc` is an
|
585
|
+
# OU ID, and `ou-jkl0-awsddddd` is a child OU ID.
|
586
|
+
#
|
587
|
+
# * IPAM will not manage the IP addresses in accounts in the child
|
588
|
+
# OU.
|
589
|
+
# * Example 2
|
590
|
+
#
|
591
|
+
# * Path where all child OUs will be part of the exclusion:
|
592
|
+
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/*`
|
593
|
+
#
|
594
|
+
# * In this example, IPAM will not manage the IP addresses in
|
595
|
+
# accounts in the OU (`ou-ghi0-awsccccc`) or in accounts in any
|
596
|
+
# OUs that are children of the OU.
|
597
|
+
#
|
598
|
+
# For more information on how to construct an entity path, see
|
599
|
+
# [Understand the Amazon Web Services Organizations entity path][1] in
|
600
|
+
# the *Amazon Web Services Identity and Access Management User Guide*.
|
601
|
+
#
|
602
|
+
#
|
603
|
+
#
|
604
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_last-accessed-view-data-orgs.html#access_policies_access-advisor-viewing-orgs-entity-path
|
605
|
+
# @return [String]
|
606
|
+
#
|
607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AddIpamOrganizationalUnitExclusion AWS API Documentation
|
608
|
+
#
|
609
|
+
class AddIpamOrganizationalUnitExclusion < Struct.new(
|
610
|
+
:organizations_entity_path)
|
611
|
+
SENSITIVE = []
|
612
|
+
include Aws::Structure
|
613
|
+
end
|
614
|
+
|
562
615
|
# An entry for a prefix list.
|
563
616
|
#
|
564
617
|
# @!attribute [rw] cidr
|
@@ -3822,19 +3875,19 @@ module Aws::EC2
|
|
3822
3875
|
# @!attribute [rw] internet_gateway_block_mode
|
3823
3876
|
# The mode of VPC BPA.
|
3824
3877
|
#
|
3825
|
-
# * `
|
3826
|
-
#
|
3827
|
-
#
|
3878
|
+
# * `off`: VPC BPA is not enabled and traffic is allowed to and from
|
3879
|
+
# internet gateways and egress-only internet gateways in this
|
3880
|
+
# Region.
|
3828
3881
|
#
|
3829
|
-
# * `bidirectional
|
3830
|
-
#
|
3831
|
-
#
|
3882
|
+
# * `block-bidirectional`: Block all traffic to and from internet
|
3883
|
+
# gateways and egress-only internet gateways in this Region (except
|
3884
|
+
# for excluded VPCs and subnets).
|
3832
3885
|
#
|
3833
|
-
# * `ingress
|
3834
|
-
#
|
3835
|
-
#
|
3836
|
-
#
|
3837
|
-
#
|
3886
|
+
# * `block-ingress`: Block all internet traffic to the VPCs in this
|
3887
|
+
# Region (except for VPCs or subnets which are excluded). Only
|
3888
|
+
# traffic to and from NAT gateways and egress-only internet gateways
|
3889
|
+
# is allowed because these gateways only allow outbound connections
|
3890
|
+
# to be established.
|
3838
3891
|
# @return [String]
|
3839
3892
|
#
|
3840
3893
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BlockPublicAccessStates AWS API Documentation
|
@@ -4544,6 +4597,181 @@ module Aws::EC2
|
|
4544
4597
|
include Aws::Structure
|
4545
4598
|
end
|
4546
4599
|
|
4600
|
+
# Describes a Capacity Block extension. With an extension, you can
|
4601
|
+
# extend the duration of time for an existing Capacity Block.
|
4602
|
+
#
|
4603
|
+
# @!attribute [rw] capacity_reservation_id
|
4604
|
+
# The reservation ID of the Capacity Block extension.
|
4605
|
+
# @return [String]
|
4606
|
+
#
|
4607
|
+
# @!attribute [rw] instance_type
|
4608
|
+
# The instance type of the Capacity Block extension.
|
4609
|
+
# @return [String]
|
4610
|
+
#
|
4611
|
+
# @!attribute [rw] instance_count
|
4612
|
+
# The number of instances in the Capacity Block extension.
|
4613
|
+
# @return [Integer]
|
4614
|
+
#
|
4615
|
+
# @!attribute [rw] availability_zone
|
4616
|
+
# The Availability Zone of the Capacity Block extension.
|
4617
|
+
# @return [String]
|
4618
|
+
#
|
4619
|
+
# @!attribute [rw] availability_zone_id
|
4620
|
+
# The Availability Zone ID of the Capacity Block extension.
|
4621
|
+
# @return [String]
|
4622
|
+
#
|
4623
|
+
# @!attribute [rw] capacity_block_extension_offering_id
|
4624
|
+
# The ID of the Capacity Block extension offering.
|
4625
|
+
# @return [String]
|
4626
|
+
#
|
4627
|
+
# @!attribute [rw] capacity_block_extension_duration_hours
|
4628
|
+
# The duration of the Capacity Block extension in hours.
|
4629
|
+
# @return [Integer]
|
4630
|
+
#
|
4631
|
+
# @!attribute [rw] capacity_block_extension_status
|
4632
|
+
# The status of the Capacity Block extension. A Capacity Block
|
4633
|
+
# extension can have one of the following statuses:
|
4634
|
+
#
|
4635
|
+
# * `payment-pending` - The Capacity Block extension payment is
|
4636
|
+
# processing. If your payment can't be processed within 12 hours,
|
4637
|
+
# the Capacity Block extension is failed.
|
4638
|
+
#
|
4639
|
+
# * `payment-failed` - Payment for the Capacity Block extension
|
4640
|
+
# request was not successful.
|
4641
|
+
#
|
4642
|
+
# * `payment-succeeded` - Payment for the Capacity Block extension
|
4643
|
+
# request was successful. You receive an invoice that reflects the
|
4644
|
+
# one-time upfront payment. In the invoice, you can associate the
|
4645
|
+
# paid amount with the Capacity Block reservation ID.
|
4646
|
+
# @return [String]
|
4647
|
+
#
|
4648
|
+
# @!attribute [rw] capacity_block_extension_purchase_date
|
4649
|
+
# The date when the Capacity Block extension was purchased.
|
4650
|
+
# @return [Time]
|
4651
|
+
#
|
4652
|
+
# @!attribute [rw] capacity_block_extension_start_date
|
4653
|
+
# The start date of the Capacity Block extension.
|
4654
|
+
# @return [Time]
|
4655
|
+
#
|
4656
|
+
# @!attribute [rw] capacity_block_extension_end_date
|
4657
|
+
# The end date of the Capacity Block extension.
|
4658
|
+
# @return [Time]
|
4659
|
+
#
|
4660
|
+
# @!attribute [rw] upfront_fee
|
4661
|
+
# The total price to be paid up front.
|
4662
|
+
# @return [String]
|
4663
|
+
#
|
4664
|
+
# @!attribute [rw] currency_code
|
4665
|
+
# The currency of the payment for the Capacity Block extension.
|
4666
|
+
# @return [String]
|
4667
|
+
#
|
4668
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityBlockExtension AWS API Documentation
|
4669
|
+
#
|
4670
|
+
class CapacityBlockExtension < Struct.new(
|
4671
|
+
:capacity_reservation_id,
|
4672
|
+
:instance_type,
|
4673
|
+
:instance_count,
|
4674
|
+
:availability_zone,
|
4675
|
+
:availability_zone_id,
|
4676
|
+
:capacity_block_extension_offering_id,
|
4677
|
+
:capacity_block_extension_duration_hours,
|
4678
|
+
:capacity_block_extension_status,
|
4679
|
+
:capacity_block_extension_purchase_date,
|
4680
|
+
:capacity_block_extension_start_date,
|
4681
|
+
:capacity_block_extension_end_date,
|
4682
|
+
:upfront_fee,
|
4683
|
+
:currency_code)
|
4684
|
+
SENSITIVE = []
|
4685
|
+
include Aws::Structure
|
4686
|
+
end
|
4687
|
+
|
4688
|
+
# The recommended Capacity Block extension that fits your search
|
4689
|
+
# requirements.
|
4690
|
+
#
|
4691
|
+
# @!attribute [rw] capacity_block_extension_offering_id
|
4692
|
+
# The ID of the Capacity Block extension offering.
|
4693
|
+
# @return [String]
|
4694
|
+
#
|
4695
|
+
# @!attribute [rw] instance_type
|
4696
|
+
# The instance type of the Capacity Block that will be extended.
|
4697
|
+
# @return [String]
|
4698
|
+
#
|
4699
|
+
# @!attribute [rw] instance_count
|
4700
|
+
# The number of instances in the Capacity Block extension offering.
|
4701
|
+
# @return [Integer]
|
4702
|
+
#
|
4703
|
+
# @!attribute [rw] availability_zone
|
4704
|
+
# The Availability Zone of the Capacity Block that will be extended.
|
4705
|
+
# @return [String]
|
4706
|
+
#
|
4707
|
+
# @!attribute [rw] availability_zone_id
|
4708
|
+
# The Availability Zone ID of the Capacity Block that will be
|
4709
|
+
# extended.
|
4710
|
+
# @return [String]
|
4711
|
+
#
|
4712
|
+
# @!attribute [rw] start_date
|
4713
|
+
# The start date of the Capacity Block that will be extended.
|
4714
|
+
# @return [Time]
|
4715
|
+
#
|
4716
|
+
# @!attribute [rw] capacity_block_extension_start_date
|
4717
|
+
# The date and time at which the Capacity Block extension will start.
|
4718
|
+
# This date is also the same as the end date of the Capacity Block
|
4719
|
+
# that will be extended.
|
4720
|
+
# @return [Time]
|
4721
|
+
#
|
4722
|
+
# @!attribute [rw] capacity_block_extension_end_date
|
4723
|
+
# The date and time at which the Capacity Block extension expires.
|
4724
|
+
# When a Capacity Block expires, the reserved capacity is released and
|
4725
|
+
# you can no longer launch instances into it. The Capacity Block's
|
4726
|
+
# state changes to `expired` when it reaches its end date
|
4727
|
+
# @return [Time]
|
4728
|
+
#
|
4729
|
+
# @!attribute [rw] capacity_block_extension_duration_hours
|
4730
|
+
# The amount of time of the Capacity Block extension offering in
|
4731
|
+
# hours.
|
4732
|
+
# @return [Integer]
|
4733
|
+
#
|
4734
|
+
# @!attribute [rw] upfront_fee
|
4735
|
+
# The total price of the Capacity Block extension offering, to be paid
|
4736
|
+
# up front.
|
4737
|
+
# @return [String]
|
4738
|
+
#
|
4739
|
+
# @!attribute [rw] currency_code
|
4740
|
+
# The currency of the payment for the Capacity Block extension
|
4741
|
+
# offering.
|
4742
|
+
# @return [String]
|
4743
|
+
#
|
4744
|
+
# @!attribute [rw] tenancy
|
4745
|
+
# Indicates the tenancy of the Capacity Block extension offering. A
|
4746
|
+
# Capacity Block can have one of the following tenancy settings:
|
4747
|
+
#
|
4748
|
+
# * `default` - The Capacity Block is created on hardware that is
|
4749
|
+
# shared with other Amazon Web Services accounts.
|
4750
|
+
#
|
4751
|
+
# * `dedicated` - The Capacity Block is created on single-tenant
|
4752
|
+
# hardware that is dedicated to a single Amazon Web Services
|
4753
|
+
# account.
|
4754
|
+
# @return [String]
|
4755
|
+
#
|
4756
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityBlockExtensionOffering AWS API Documentation
|
4757
|
+
#
|
4758
|
+
class CapacityBlockExtensionOffering < Struct.new(
|
4759
|
+
:capacity_block_extension_offering_id,
|
4760
|
+
:instance_type,
|
4761
|
+
:instance_count,
|
4762
|
+
:availability_zone,
|
4763
|
+
:availability_zone_id,
|
4764
|
+
:start_date,
|
4765
|
+
:capacity_block_extension_start_date,
|
4766
|
+
:capacity_block_extension_end_date,
|
4767
|
+
:capacity_block_extension_duration_hours,
|
4768
|
+
:upfront_fee,
|
4769
|
+
:currency_code,
|
4770
|
+
:tenancy)
|
4771
|
+
SENSITIVE = []
|
4772
|
+
include Aws::Structure
|
4773
|
+
end
|
4774
|
+
|
4547
4775
|
# The recommended Capacity Block that fits your search requirements.
|
4548
4776
|
#
|
4549
4777
|
# @!attribute [rw] capacity_block_offering_id
|
@@ -4571,7 +4799,10 @@ module Aws::EC2
|
|
4571
4799
|
# @return [Time]
|
4572
4800
|
#
|
4573
4801
|
# @!attribute [rw] capacity_block_duration_hours
|
4574
|
-
# The
|
4802
|
+
# The number of hours (in addition to `capacityBlockDurationMinutes`)
|
4803
|
+
# for the duration of the Capacity Block reservation. For example, if
|
4804
|
+
# a Capacity Block starts at **04:55** and ends at **11:30**, the
|
4805
|
+
# hours field would be **6**.
|
4575
4806
|
# @return [Integer]
|
4576
4807
|
#
|
4577
4808
|
# @!attribute [rw] upfront_fee
|
@@ -4586,6 +4817,13 @@ module Aws::EC2
|
|
4586
4817
|
# The tenancy of the Capacity Block.
|
4587
4818
|
# @return [String]
|
4588
4819
|
#
|
4820
|
+
# @!attribute [rw] capacity_block_duration_minutes
|
4821
|
+
# The number of minutes (in addition to `capacityBlockDurationHours`)
|
4822
|
+
# for the duration of the Capacity Block reservation. For example, if
|
4823
|
+
# a Capacity Block starts at **08:55** and ends at **11:30**, the
|
4824
|
+
# minutes field would be **35**.
|
4825
|
+
# @return [Integer]
|
4826
|
+
#
|
4589
4827
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityBlockOffering AWS API Documentation
|
4590
4828
|
#
|
4591
4829
|
class CapacityBlockOffering < Struct.new(
|
@@ -4598,7 +4836,8 @@ module Aws::EC2
|
|
4598
4836
|
:capacity_block_duration_hours,
|
4599
4837
|
:upfront_fee,
|
4600
4838
|
:currency_code,
|
4601
|
-
:tenancy
|
4839
|
+
:tenancy,
|
4840
|
+
:capacity_block_duration_minutes)
|
4602
4841
|
SENSITIVE = []
|
4603
4842
|
include Aws::Structure
|
4604
4843
|
end
|
@@ -4675,23 +4914,41 @@ module Aws::EC2
|
|
4675
4914
|
# The current state of the Capacity Reservation. A Capacity
|
4676
4915
|
# Reservation can be in one of the following states:
|
4677
4916
|
#
|
4678
|
-
# * `active` - The
|
4679
|
-
# available for your use.
|
4917
|
+
# * `active` - The capacity is available for use.
|
4680
4918
|
#
|
4681
4919
|
# * `expired` - The Capacity Reservation expired automatically at the
|
4682
|
-
# date and time specified in your request. The reserved
|
4683
|
-
# no longer available for your use.
|
4920
|
+
# date and time specified in your reservation request. The reserved
|
4921
|
+
# capacity is no longer available for your use.
|
4684
4922
|
#
|
4685
|
-
# * `cancelled` - The Capacity Reservation was
|
4923
|
+
# * `cancelled` - The Capacity Reservation was canceled. The reserved
|
4686
4924
|
# capacity is no longer available for your use.
|
4687
4925
|
#
|
4688
4926
|
# * `pending` - The Capacity Reservation request was successful but
|
4689
4927
|
# the capacity provisioning is still pending.
|
4690
4928
|
#
|
4691
4929
|
# * `failed` - The Capacity Reservation request has failed. A request
|
4692
|
-
#
|
4693
|
-
# constraints, or instance limit constraints.
|
4694
|
-
#
|
4930
|
+
# can fail due to request parameters that are not valid, capacity
|
4931
|
+
# constraints, or instance limit constraints. You can view a failed
|
4932
|
+
# request for 60 minutes.
|
4933
|
+
#
|
4934
|
+
# * `scheduled` - (*Future-dated Capacity Reservations only*) The
|
4935
|
+
# future-dated Capacity Reservation request was approved and the
|
4936
|
+
# Capacity Reservation is scheduled for delivery on the requested
|
4937
|
+
# start date.
|
4938
|
+
#
|
4939
|
+
# * `assessing` - (*Future-dated Capacity Reservations only*) Amazon
|
4940
|
+
# EC2 is assessing your request for a future-dated Capacity
|
4941
|
+
# Reservation.
|
4942
|
+
#
|
4943
|
+
# * `delayed` - (*Future-dated Capacity Reservations only*) Amazon EC2
|
4944
|
+
# encountered a delay in provisioning the requested future-dated
|
4945
|
+
# Capacity Reservation. Amazon EC2 is unable to deliver the
|
4946
|
+
# requested capacity by the requested start date and time.
|
4947
|
+
#
|
4948
|
+
# * `unsupported` - (*Future-dated Capacity Reservations only*) Amazon
|
4949
|
+
# EC2 can't support the future-dated Capacity Reservation request
|
4950
|
+
# due to capacity constraints. You can view unsupported requests for
|
4951
|
+
# 30 days. The Capacity Reservation will not be delivered.
|
4695
4952
|
# @return [String]
|
4696
4953
|
#
|
4697
4954
|
# @!attribute [rw] start_date
|
@@ -4777,6 +5034,18 @@ module Aws::EC2
|
|
4777
5034
|
# unused capacity of the Capacity Reservation is assigned.
|
4778
5035
|
# @return [String]
|
4779
5036
|
#
|
5037
|
+
# @!attribute [rw] commitment_info
|
5038
|
+
# Information about your commitment for a future-dated Capacity
|
5039
|
+
# Reservation.
|
5040
|
+
# @return [Types::CapacityReservationCommitmentInfo]
|
5041
|
+
#
|
5042
|
+
# @!attribute [rw] delivery_preference
|
5043
|
+
# The delivery method for a future-dated Capacity Reservation.
|
5044
|
+
# `incremental` indicates that the requested capacity is delivered in
|
5045
|
+
# addition to any running instances and reserved capacity that you
|
5046
|
+
# have in your account at the requested date and time.
|
5047
|
+
# @return [String]
|
5048
|
+
#
|
4780
5049
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservation AWS API Documentation
|
4781
5050
|
#
|
4782
5051
|
class CapacityReservation < Struct.new(
|
@@ -4804,7 +5073,9 @@ module Aws::EC2
|
|
4804
5073
|
:placement_group_arn,
|
4805
5074
|
:capacity_allocations,
|
4806
5075
|
:reservation_type,
|
4807
|
-
:unused_reservation_billing_owner_id
|
5076
|
+
:unused_reservation_billing_owner_id,
|
5077
|
+
:commitment_info,
|
5078
|
+
:delivery_preference)
|
4808
5079
|
SENSITIVE = []
|
4809
5080
|
include Aws::Structure
|
4810
5081
|
end
|
@@ -4863,6 +5134,30 @@ module Aws::EC2
|
|
4863
5134
|
include Aws::Structure
|
4864
5135
|
end
|
4865
5136
|
|
5137
|
+
# Information about your commitment for a future-dated Capacity
|
5138
|
+
# Reservation.
|
5139
|
+
#
|
5140
|
+
# @!attribute [rw] committed_instance_count
|
5141
|
+
# The instance capacity that you committed to when you requested the
|
5142
|
+
# future-dated Capacity Reservation.
|
5143
|
+
# @return [Integer]
|
5144
|
+
#
|
5145
|
+
# @!attribute [rw] commitment_end_date
|
5146
|
+
# The date and time at which the commitment duration expires, in the
|
5147
|
+
# ISO8601 format in the UTC time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
5148
|
+
# You can't decrease the instance count or cancel the Capacity
|
5149
|
+
# Reservation before this date and time.
|
5150
|
+
# @return [Time]
|
5151
|
+
#
|
5152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CapacityReservationCommitmentInfo AWS API Documentation
|
5153
|
+
#
|
5154
|
+
class CapacityReservationCommitmentInfo < Struct.new(
|
5155
|
+
:committed_instance_count,
|
5156
|
+
:commitment_end_date)
|
5157
|
+
SENSITIVE = []
|
5158
|
+
include Aws::Structure
|
5159
|
+
end
|
5160
|
+
|
4866
5161
|
# Information about a Capacity Reservation Fleet.
|
4867
5162
|
#
|
4868
5163
|
# @!attribute [rw] capacity_reservation_fleet_id
|
@@ -7296,8 +7591,15 @@ module Aws::EC2
|
|
7296
7591
|
# @return [String]
|
7297
7592
|
#
|
7298
7593
|
# @!attribute [rw] instance_type
|
7299
|
-
# The instance type for which to reserve capacity.
|
7300
|
-
#
|
7594
|
+
# The instance type for which to reserve capacity.
|
7595
|
+
#
|
7596
|
+
# <note markdown="1"> You can request future-dated Capacity Reservations for instance
|
7597
|
+
# types in the C, M, R, I, and T instance families only.
|
7598
|
+
#
|
7599
|
+
# </note>
|
7600
|
+
#
|
7601
|
+
# For more information, see [Instance types][1] in the *Amazon EC2
|
7602
|
+
# User Guide*.
|
7301
7603
|
#
|
7302
7604
|
#
|
7303
7605
|
#
|
@@ -7332,6 +7634,13 @@ module Aws::EC2
|
|
7332
7634
|
# @!attribute [rw] instance_count
|
7333
7635
|
# The number of instances for which to reserve capacity.
|
7334
7636
|
#
|
7637
|
+
# <note markdown="1"> You can request future-dated Capacity Reservations for an instance
|
7638
|
+
# count with a minimum of 100 VPUs. For example, if you request a
|
7639
|
+
# future-dated Capacity Reservation for `m5.xlarge` instances, you
|
7640
|
+
# must request at least 25 instances (*25 * m5.xlarge = 100 vCPUs*).
|
7641
|
+
#
|
7642
|
+
# </note>
|
7643
|
+
#
|
7335
7644
|
# Valid range: 1 - 1000
|
7336
7645
|
# @return [Integer]
|
7337
7646
|
#
|
@@ -7362,6 +7671,10 @@ module Aws::EC2
|
|
7362
7671
|
# cancelled within an hour from the specified time. For example, if
|
7363
7672
|
# you specify 5/31/2019, 13:30:55, the Capacity Reservation is
|
7364
7673
|
# guaranteed to end between 13:30:55 and 14:30:55 on 5/31/2019.
|
7674
|
+
#
|
7675
|
+
# If you are requesting a future-dated Capacity Reservation, you
|
7676
|
+
# can't specify an end date and time that is within the commitment
|
7677
|
+
# duration.
|
7365
7678
|
# @return [Time]
|
7366
7679
|
#
|
7367
7680
|
# @!attribute [rw] end_date_type
|
@@ -7393,6 +7706,11 @@ module Aws::EC2
|
|
7393
7706
|
# Reservation. This ensures that only permitted instances can use
|
7394
7707
|
# the reserved capacity.
|
7395
7708
|
#
|
7709
|
+
# <note markdown="1"> If you are requesting a future-dated Capacity Reservation, you must
|
7710
|
+
# specify `targeted`.
|
7711
|
+
#
|
7712
|
+
# </note>
|
7713
|
+
#
|
7396
7714
|
# Default: `open`
|
7397
7715
|
# @return [String]
|
7398
7716
|
#
|
@@ -7408,11 +7726,19 @@ module Aws::EC2
|
|
7408
7726
|
# @return [Boolean]
|
7409
7727
|
#
|
7410
7728
|
# @!attribute [rw] outpost_arn
|
7729
|
+
# <note markdown="1"> Not supported for future-dated Capacity Reservations.
|
7730
|
+
#
|
7731
|
+
# </note>
|
7732
|
+
#
|
7411
7733
|
# The Amazon Resource Name (ARN) of the Outpost on which to create the
|
7412
7734
|
# Capacity Reservation.
|
7413
7735
|
# @return [String]
|
7414
7736
|
#
|
7415
7737
|
# @!attribute [rw] placement_group_arn
|
7738
|
+
# <note markdown="1"> Not supported for future-dated Capacity Reservations.
|
7739
|
+
#
|
7740
|
+
# </note>
|
7741
|
+
#
|
7416
7742
|
# The Amazon Resource Name (ARN) of the cluster placement group in
|
7417
7743
|
# which to create the Capacity Reservation. For more information, see
|
7418
7744
|
# [ Capacity Reservations for cluster placement groups][1] in the
|
@@ -7423,6 +7749,53 @@ module Aws::EC2
|
|
7423
7749
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cr-cpg.html
|
7424
7750
|
# @return [String]
|
7425
7751
|
#
|
7752
|
+
# @!attribute [rw] start_date
|
7753
|
+
# <note markdown="1"> Required for future-dated Capacity Reservations only. To create a
|
7754
|
+
# Capacity Reservation for immediate use, omit this parameter.
|
7755
|
+
#
|
7756
|
+
# </note>
|
7757
|
+
#
|
7758
|
+
# The date and time at which the future-dated Capacity Reservation
|
7759
|
+
# should become available for use, in the ISO8601 format in the UTC
|
7760
|
+
# time zone (`YYYY-MM-DDThh:mm:ss.sssZ`).
|
7761
|
+
#
|
7762
|
+
# You can request a future-dated Capacity Reservation between 5 and
|
7763
|
+
# 120 days in advance.
|
7764
|
+
# @return [Time]
|
7765
|
+
#
|
7766
|
+
# @!attribute [rw] commitment_duration
|
7767
|
+
# <note markdown="1"> Required for future-dated Capacity Reservations only. To create a
|
7768
|
+
# Capacity Reservation for immediate use, omit this parameter.
|
7769
|
+
#
|
7770
|
+
# </note>
|
7771
|
+
#
|
7772
|
+
# Specify a commitment duration, in seconds, for the future-dated
|
7773
|
+
# Capacity Reservation.
|
7774
|
+
#
|
7775
|
+
# The commitment duration is a minimum duration for which you commit
|
7776
|
+
# to having the future-dated Capacity Reservation in the `active`
|
7777
|
+
# state in your account after it has been delivered.
|
7778
|
+
#
|
7779
|
+
# For more information, see [ Commitment duration][1].
|
7780
|
+
#
|
7781
|
+
#
|
7782
|
+
#
|
7783
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cr-concepts.html#cr-commitment-duration
|
7784
|
+
# @return [Integer]
|
7785
|
+
#
|
7786
|
+
# @!attribute [rw] delivery_preference
|
7787
|
+
# <note markdown="1"> Required for future-dated Capacity Reservations only. To create a
|
7788
|
+
# Capacity Reservation for immediate use, omit this parameter.
|
7789
|
+
#
|
7790
|
+
# </note>
|
7791
|
+
#
|
7792
|
+
# Indicates that the requested capacity will be delivered in addition
|
7793
|
+
# to any running instances or reserved capacity that you have in your
|
7794
|
+
# account at the requested date and time.
|
7795
|
+
#
|
7796
|
+
# The only supported value is `incremental`.
|
7797
|
+
# @return [String]
|
7798
|
+
#
|
7426
7799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateCapacityReservationRequest AWS API Documentation
|
7427
7800
|
#
|
7428
7801
|
class CreateCapacityReservationRequest < Struct.new(
|
@@ -7441,7 +7814,10 @@ module Aws::EC2
|
|
7441
7814
|
:tag_specifications,
|
7442
7815
|
:dry_run,
|
7443
7816
|
:outpost_arn,
|
7444
|
-
:placement_group_arn
|
7817
|
+
:placement_group_arn,
|
7818
|
+
:start_date,
|
7819
|
+
:commitment_duration,
|
7820
|
+
:delivery_preference)
|
7445
7821
|
SENSITIVE = []
|
7446
7822
|
include Aws::Structure
|
7447
7823
|
end
|
@@ -13164,13 +13540,13 @@ module Aws::EC2
|
|
13164
13540
|
# @!attribute [rw] internet_gateway_exclusion_mode
|
13165
13541
|
# The exclusion mode for internet gateway traffic.
|
13166
13542
|
#
|
13167
|
-
# * `bidirectional
|
13168
|
-
#
|
13543
|
+
# * `allow-bidirectional`: Allow all internet traffic to and from the
|
13544
|
+
# excluded VPCs and subnets.
|
13169
13545
|
#
|
13170
|
-
# * `egress
|
13171
|
-
#
|
13172
|
-
#
|
13173
|
-
#
|
13546
|
+
# * `allow-egress`: Allow outbound internet traffic from the excluded
|
13547
|
+
# VPCs and subnets. Block inbound internet traffic to the excluded
|
13548
|
+
# VPCs and subnets. Only applies when VPC Block Public Access is set
|
13549
|
+
# to Bidirectional.
|
13174
13550
|
# @return [String]
|
13175
13551
|
#
|
13176
13552
|
# @!attribute [rw] tag_specifications
|
@@ -17449,6 +17825,143 @@ module Aws::EC2
|
|
17449
17825
|
include Aws::Structure
|
17450
17826
|
end
|
17451
17827
|
|
17828
|
+
# @!attribute [rw] capacity_reservation_ids
|
17829
|
+
# The IDs of Capacity Block reservations that you want to display the
|
17830
|
+
# history for.
|
17831
|
+
# @return [Array<String>]
|
17832
|
+
#
|
17833
|
+
# @!attribute [rw] next_token
|
17834
|
+
# The token to use to retrieve the next page of results.
|
17835
|
+
# @return [String]
|
17836
|
+
#
|
17837
|
+
# @!attribute [rw] max_results
|
17838
|
+
# The maximum number of items to return for this request. To get the
|
17839
|
+
# next page of items, make another request with the token returned in
|
17840
|
+
# the output. For more information, see [Pagination][1].
|
17841
|
+
#
|
17842
|
+
#
|
17843
|
+
#
|
17844
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
17845
|
+
# @return [Integer]
|
17846
|
+
#
|
17847
|
+
# @!attribute [rw] filters
|
17848
|
+
# One or more filters
|
17849
|
+
#
|
17850
|
+
# * `availability-zone` - The Availability Zone of the extension.
|
17851
|
+
#
|
17852
|
+
# * `availability-zone-id` - The Availability Zone ID of the
|
17853
|
+
# extension.
|
17854
|
+
#
|
17855
|
+
# * `capacity-block-extension-offering-id` - The ID of the extension
|
17856
|
+
# offering.
|
17857
|
+
#
|
17858
|
+
# * `capacity-block-extension-status` - The status of the extension
|
17859
|
+
# (`payment-pending` \| `payment-failed` \| `payment-succeeded`).
|
17860
|
+
#
|
17861
|
+
# * `capacity-reservation-id` - The reservation ID of the extension.
|
17862
|
+
#
|
17863
|
+
# * `instance-type` - The instance type of the extension.
|
17864
|
+
# @return [Array<Types::Filter>]
|
17865
|
+
#
|
17866
|
+
# @!attribute [rw] dry_run
|
17867
|
+
# Checks whether you have the required permissions for the action,
|
17868
|
+
# without actually making the request, and provides an error response.
|
17869
|
+
# If you have the required permissions, the error response is
|
17870
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
17871
|
+
# @return [Boolean]
|
17872
|
+
#
|
17873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityBlockExtensionHistoryRequest AWS API Documentation
|
17874
|
+
#
|
17875
|
+
class DescribeCapacityBlockExtensionHistoryRequest < Struct.new(
|
17876
|
+
:capacity_reservation_ids,
|
17877
|
+
:next_token,
|
17878
|
+
:max_results,
|
17879
|
+
:filters,
|
17880
|
+
:dry_run)
|
17881
|
+
SENSITIVE = []
|
17882
|
+
include Aws::Structure
|
17883
|
+
end
|
17884
|
+
|
17885
|
+
# @!attribute [rw] capacity_block_extensions
|
17886
|
+
# Describes one or more of your Capacity Block extensions. The results
|
17887
|
+
# describe only the Capacity Block extensions in the Amazon Web
|
17888
|
+
# Services Region that you're currently using.
|
17889
|
+
# @return [Array<Types::CapacityBlockExtension>]
|
17890
|
+
#
|
17891
|
+
# @!attribute [rw] next_token
|
17892
|
+
# The token to use to retrieve the next page of results. This value is
|
17893
|
+
# `null` when there are no more results to return.
|
17894
|
+
# @return [String]
|
17895
|
+
#
|
17896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityBlockExtensionHistoryResult AWS API Documentation
|
17897
|
+
#
|
17898
|
+
class DescribeCapacityBlockExtensionHistoryResult < Struct.new(
|
17899
|
+
:capacity_block_extensions,
|
17900
|
+
:next_token)
|
17901
|
+
SENSITIVE = []
|
17902
|
+
include Aws::Structure
|
17903
|
+
end
|
17904
|
+
|
17905
|
+
# @!attribute [rw] dry_run
|
17906
|
+
# Checks whether you have the required permissions for the action,
|
17907
|
+
# without actually making the request, and provides an error response.
|
17908
|
+
# If you have the required permissions, the error response is
|
17909
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
17910
|
+
# @return [Boolean]
|
17911
|
+
#
|
17912
|
+
# @!attribute [rw] capacity_block_extension_duration_hours
|
17913
|
+
# The duration of the Capacity Block extension offering in hours.
|
17914
|
+
# @return [Integer]
|
17915
|
+
#
|
17916
|
+
# @!attribute [rw] capacity_reservation_id
|
17917
|
+
# The ID of the Capacity reservation to be extended.
|
17918
|
+
# @return [String]
|
17919
|
+
#
|
17920
|
+
# @!attribute [rw] next_token
|
17921
|
+
# The token to use to retrieve the next page of results.
|
17922
|
+
# @return [String]
|
17923
|
+
#
|
17924
|
+
# @!attribute [rw] max_results
|
17925
|
+
# The maximum number of items to return for this request. To get the
|
17926
|
+
# next page of items, make another request with the token returned in
|
17927
|
+
# the output. For more information, see [Pagination][1].
|
17928
|
+
#
|
17929
|
+
#
|
17930
|
+
#
|
17931
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
17932
|
+
# @return [Integer]
|
17933
|
+
#
|
17934
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityBlockExtensionOfferingsRequest AWS API Documentation
|
17935
|
+
#
|
17936
|
+
class DescribeCapacityBlockExtensionOfferingsRequest < Struct.new(
|
17937
|
+
:dry_run,
|
17938
|
+
:capacity_block_extension_duration_hours,
|
17939
|
+
:capacity_reservation_id,
|
17940
|
+
:next_token,
|
17941
|
+
:max_results)
|
17942
|
+
SENSITIVE = []
|
17943
|
+
include Aws::Structure
|
17944
|
+
end
|
17945
|
+
|
17946
|
+
# @!attribute [rw] capacity_block_extension_offerings
|
17947
|
+
# The recommended Capacity Block extension offerings for the dates
|
17948
|
+
# specified.
|
17949
|
+
# @return [Array<Types::CapacityBlockExtensionOffering>]
|
17950
|
+
#
|
17951
|
+
# @!attribute [rw] next_token
|
17952
|
+
# The token to use to retrieve the next page of results. This value is
|
17953
|
+
# `null` when there are no more results to return.
|
17954
|
+
# @return [String]
|
17955
|
+
#
|
17956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeCapacityBlockExtensionOfferingsResult AWS API Documentation
|
17957
|
+
#
|
17958
|
+
class DescribeCapacityBlockExtensionOfferingsResult < Struct.new(
|
17959
|
+
:capacity_block_extension_offerings,
|
17960
|
+
:next_token)
|
17961
|
+
SENSITIVE = []
|
17962
|
+
include Aws::Structure
|
17963
|
+
end
|
17964
|
+
|
17452
17965
|
# @!attribute [rw] dry_run
|
17453
17966
|
# Checks whether you have the required permissions for the action,
|
17454
17967
|
# without actually making the request, and provides an error response.
|
@@ -28323,8 +28836,7 @@ module Aws::EC2
|
|
28323
28836
|
# * `resource-arn` - The Amazon Resource Name (ARN) of a exclusion.
|
28324
28837
|
#
|
28325
28838
|
# * `internet-gateway-exclusion-mode` - The mode of a VPC BPA
|
28326
|
-
# exclusion. Possible values: `bidirectional
|
28327
|
-
# egress-access-allowed`.
|
28839
|
+
# exclusion. Possible values: `allow-bidirectional | allow-egress`.
|
28328
28840
|
#
|
28329
28841
|
# * `state` - The state of VPC BPA. Possible values:
|
28330
28842
|
# `create-in-progress | create-complete | update-in-progress |
|
@@ -35504,23 +36016,41 @@ module Aws::EC2
|
|
35504
36016
|
# The current state of the Capacity Reservation. A Capacity
|
35505
36017
|
# Reservation can be in one of the following states:
|
35506
36018
|
#
|
35507
|
-
# * `active` - The
|
35508
|
-
# available for your use.
|
36019
|
+
# * `active` - The capacity is available for use.
|
35509
36020
|
#
|
35510
36021
|
# * `expired` - The Capacity Reservation expired automatically at the
|
35511
|
-
# date and time specified in your request. The reserved
|
35512
|
-
# no longer available for your use.
|
36022
|
+
# date and time specified in your reservation request. The reserved
|
36023
|
+
# capacity is no longer available for your use.
|
35513
36024
|
#
|
35514
|
-
# * `cancelled` - The Capacity Reservation was
|
36025
|
+
# * `cancelled` - The Capacity Reservation was canceled. The reserved
|
35515
36026
|
# capacity is no longer available for your use.
|
35516
36027
|
#
|
35517
36028
|
# * `pending` - The Capacity Reservation request was successful but
|
35518
36029
|
# the capacity provisioning is still pending.
|
35519
36030
|
#
|
35520
36031
|
# * `failed` - The Capacity Reservation request has failed. A request
|
35521
|
-
#
|
35522
|
-
# constraints, or instance limit constraints.
|
35523
|
-
#
|
36032
|
+
# can fail due to request parameters that are not valid, capacity
|
36033
|
+
# constraints, or instance limit constraints. You can view a failed
|
36034
|
+
# request for 60 minutes.
|
36035
|
+
#
|
36036
|
+
# * `scheduled` - (*Future-dated Capacity Reservations only*) The
|
36037
|
+
# future-dated Capacity Reservation request was approved and the
|
36038
|
+
# Capacity Reservation is scheduled for delivery on the requested
|
36039
|
+
# start date.
|
36040
|
+
#
|
36041
|
+
# * `assessing` - (*Future-dated Capacity Reservations only*) Amazon
|
36042
|
+
# EC2 is assessing your request for a future-dated Capacity
|
36043
|
+
# Reservation.
|
36044
|
+
#
|
36045
|
+
# * `delayed` - (*Future-dated Capacity Reservations only*) Amazon EC2
|
36046
|
+
# encountered a delay in provisioning the requested future-dated
|
36047
|
+
# Capacity Reservation. Amazon EC2 is unable to deliver the
|
36048
|
+
# requested capacity by the requested start date and time.
|
36049
|
+
#
|
36050
|
+
# * `unsupported` - (*Future-dated Capacity Reservations only*) Amazon
|
36051
|
+
# EC2 can't support the future-dated Capacity Reservation request
|
36052
|
+
# due to capacity constraints. You can view unsupported requests for
|
36053
|
+
# 30 days. The Capacity Reservation will not be delivered.
|
35524
36054
|
# @return [String]
|
35525
36055
|
#
|
35526
36056
|
# @!attribute [rw] instance_usages
|
@@ -43979,6 +44509,11 @@ module Aws::EC2
|
|
43979
44509
|
# The last successful resource discovery time.
|
43980
44510
|
# @return [Time]
|
43981
44511
|
#
|
44512
|
+
# @!attribute [rw] organizational_unit_id
|
44513
|
+
# The ID of an Organizational Unit in Amazon Web Services
|
44514
|
+
# Organizations.
|
44515
|
+
# @return [String]
|
44516
|
+
#
|
43982
44517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamDiscoveredAccount AWS API Documentation
|
43983
44518
|
#
|
43984
44519
|
class IpamDiscoveredAccount < Struct.new(
|
@@ -43986,7 +44521,8 @@ module Aws::EC2
|
|
43986
44521
|
:discovery_region,
|
43987
44522
|
:failure_reason,
|
43988
44523
|
:last_attempted_discovery_time,
|
43989
|
-
:last_successful_discovery_time
|
44524
|
+
:last_successful_discovery_time,
|
44525
|
+
:organizational_unit_id)
|
43990
44526
|
SENSITIVE = []
|
43991
44527
|
include Aws::Structure
|
43992
44528
|
end
|
@@ -44345,6 +44881,29 @@ module Aws::EC2
|
|
44345
44881
|
include Aws::Structure
|
44346
44882
|
end
|
44347
44883
|
|
44884
|
+
# If your IPAM is integrated with Amazon Web Services Organizations and
|
44885
|
+
# you add an organizational unit (OU) exclusion, IPAM will not manage
|
44886
|
+
# the IP addresses in accounts in that OU exclusion.
|
44887
|
+
#
|
44888
|
+
# @!attribute [rw] organizations_entity_path
|
44889
|
+
# An Amazon Web Services Organizations entity path. For more
|
44890
|
+
# information on the entity path, see [Understand the Amazon Web
|
44891
|
+
# Services Organizations entity path][1] in the *Amazon Web Services
|
44892
|
+
# Identity and Access Management User Guide*.
|
44893
|
+
#
|
44894
|
+
#
|
44895
|
+
#
|
44896
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_last-accessed-view-data-orgs.html#access_policies_access-advisor-viewing-orgs-entity-path
|
44897
|
+
# @return [String]
|
44898
|
+
#
|
44899
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamOrganizationalUnitExclusion AWS API Documentation
|
44900
|
+
#
|
44901
|
+
class IpamOrganizationalUnitExclusion < Struct.new(
|
44902
|
+
:organizations_entity_path)
|
44903
|
+
SENSITIVE = []
|
44904
|
+
include Aws::Structure
|
44905
|
+
end
|
44906
|
+
|
44348
44907
|
# In IPAM, a pool is a collection of contiguous IP addresses CIDRs.
|
44349
44908
|
# Pools enable you to organize your IP addresses according to your
|
44350
44909
|
# routing and security needs. For example, if you have separate routing
|
@@ -44970,6 +45529,12 @@ module Aws::EC2
|
|
44970
45529
|
# Services costs.
|
44971
45530
|
# @return [Array<Types::Tag>]
|
44972
45531
|
#
|
45532
|
+
# @!attribute [rw] organizational_unit_exclusions
|
45533
|
+
# If your IPAM is integrated with Amazon Web Services Organizations
|
45534
|
+
# and you add an organizational unit (OU) exclusion, IPAM will not
|
45535
|
+
# manage the IP addresses in accounts in that OU exclusion.
|
45536
|
+
# @return [Array<Types::IpamOrganizationalUnitExclusion>]
|
45537
|
+
#
|
44973
45538
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/IpamResourceDiscovery AWS API Documentation
|
44974
45539
|
#
|
44975
45540
|
class IpamResourceDiscovery < Struct.new(
|
@@ -44981,7 +45546,8 @@ module Aws::EC2
|
|
44981
45546
|
:operating_regions,
|
44982
45547
|
:is_default,
|
44983
45548
|
:state,
|
44984
|
-
:tags
|
45549
|
+
:tags,
|
45550
|
+
:organizational_unit_exclusions)
|
44985
45551
|
SENSITIVE = []
|
44986
45552
|
include Aws::Structure
|
44987
45553
|
end
|
@@ -50408,6 +50974,32 @@ module Aws::EC2
|
|
50408
50974
|
# Remove operating Regions.
|
50409
50975
|
# @return [Array<Types::RemoveIpamOperatingRegion>]
|
50410
50976
|
#
|
50977
|
+
# @!attribute [rw] add_organizational_unit_exclusions
|
50978
|
+
# Add an Organizational Unit (OU) exclusion to your IPAM. If your IPAM
|
50979
|
+
# is integrated with Amazon Web Services Organizations and you add an
|
50980
|
+
# organizational unit (OU) exclusion, IPAM will not manage the IP
|
50981
|
+
# addresses in accounts in that OU exclusion. There is a limit on the
|
50982
|
+
# number of exclusions you can create. For more information, see
|
50983
|
+
# [Quotas for your IPAM][1] in the *Amazon VPC IPAM User Guide*.
|
50984
|
+
#
|
50985
|
+
#
|
50986
|
+
#
|
50987
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
|
50988
|
+
# @return [Array<Types::AddIpamOrganizationalUnitExclusion>]
|
50989
|
+
#
|
50990
|
+
# @!attribute [rw] remove_organizational_unit_exclusions
|
50991
|
+
# Remove an Organizational Unit (OU) exclusion to your IPAM. If your
|
50992
|
+
# IPAM is integrated with Amazon Web Services Organizations and you
|
50993
|
+
# add an organizational unit (OU) exclusion, IPAM will not manage the
|
50994
|
+
# IP addresses in accounts in that OU exclusion. There is a limit on
|
50995
|
+
# the number of exclusions you can create. For more information, see
|
50996
|
+
# [Quotas for your IPAM][1] in the *Amazon VPC IPAM User Guide*.
|
50997
|
+
#
|
50998
|
+
#
|
50999
|
+
#
|
51000
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
|
51001
|
+
# @return [Array<Types::RemoveIpamOrganizationalUnitExclusion>]
|
51002
|
+
#
|
50411
51003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyIpamResourceDiscoveryRequest AWS API Documentation
|
50412
51004
|
#
|
50413
51005
|
class ModifyIpamResourceDiscoveryRequest < Struct.new(
|
@@ -50415,7 +51007,9 @@ module Aws::EC2
|
|
50415
51007
|
:ipam_resource_discovery_id,
|
50416
51008
|
:description,
|
50417
51009
|
:add_operating_regions,
|
50418
|
-
:remove_operating_regions
|
51010
|
+
:remove_operating_regions,
|
51011
|
+
:add_organizational_unit_exclusions,
|
51012
|
+
:remove_organizational_unit_exclusions)
|
50419
51013
|
SENSITIVE = []
|
50420
51014
|
include Aws::Structure
|
50421
51015
|
end
|
@@ -52385,13 +52979,13 @@ module Aws::EC2
|
|
52385
52979
|
# @!attribute [rw] internet_gateway_exclusion_mode
|
52386
52980
|
# The exclusion mode for internet gateway traffic.
|
52387
52981
|
#
|
52388
|
-
# * `bidirectional
|
52389
|
-
#
|
52982
|
+
# * `allow-bidirectional`: Allow all internet traffic to and from the
|
52983
|
+
# excluded VPCs and subnets.
|
52390
52984
|
#
|
52391
|
-
# * `egress
|
52392
|
-
#
|
52393
|
-
#
|
52394
|
-
#
|
52985
|
+
# * `allow-egress`: Allow outbound internet traffic from the excluded
|
52986
|
+
# VPCs and subnets. Block inbound internet traffic to the excluded
|
52987
|
+
# VPCs and subnets. Only applies when VPC Block Public Access is set
|
52988
|
+
# to Bidirectional.
|
52395
52989
|
# @return [String]
|
52396
52990
|
#
|
52397
52991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessExclusionRequest AWS API Documentation
|
@@ -52426,19 +53020,19 @@ module Aws::EC2
|
|
52426
53020
|
# @!attribute [rw] internet_gateway_block_mode
|
52427
53021
|
# The mode of VPC BPA.
|
52428
53022
|
#
|
52429
|
-
# * `
|
52430
|
-
#
|
52431
|
-
#
|
53023
|
+
# * `off`: VPC BPA is not enabled and traffic is allowed to and from
|
53024
|
+
# internet gateways and egress-only internet gateways in this
|
53025
|
+
# Region.
|
52432
53026
|
#
|
52433
|
-
# * `bidirectional
|
52434
|
-
#
|
52435
|
-
#
|
53027
|
+
# * `block-bidirectional`: Block all traffic to and from internet
|
53028
|
+
# gateways and egress-only internet gateways in this Region (except
|
53029
|
+
# for excluded VPCs and subnets).
|
52436
53030
|
#
|
52437
|
-
# * `ingress
|
52438
|
-
#
|
52439
|
-
#
|
52440
|
-
#
|
52441
|
-
#
|
53031
|
+
# * `block-ingress`: Block all internet traffic to the VPCs in this
|
53032
|
+
# Region (except for VPCs or subnets which are excluded). Only
|
53033
|
+
# traffic to and from NAT gateways and egress-only internet gateways
|
53034
|
+
# is allowed because these gateways only allow outbound connections
|
53035
|
+
# to be established.
|
52442
53036
|
# @return [String]
|
52443
53037
|
#
|
52444
53038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessOptionsRequest AWS API Documentation
|
@@ -56902,6 +57496,43 @@ module Aws::EC2
|
|
56902
57496
|
include Aws::Structure
|
56903
57497
|
end
|
56904
57498
|
|
57499
|
+
# @!attribute [rw] capacity_block_extension_offering_id
|
57500
|
+
# The ID of the Capacity Block extension offering to purchase.
|
57501
|
+
# @return [String]
|
57502
|
+
#
|
57503
|
+
# @!attribute [rw] capacity_reservation_id
|
57504
|
+
# The ID of the Capacity reservation to be extended.
|
57505
|
+
# @return [String]
|
57506
|
+
#
|
57507
|
+
# @!attribute [rw] dry_run
|
57508
|
+
# Checks whether you have the required permissions for the action,
|
57509
|
+
# without actually making the request, and provides an error response.
|
57510
|
+
# If you have the required permissions, the error response is
|
57511
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
57512
|
+
# @return [Boolean]
|
57513
|
+
#
|
57514
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseCapacityBlockExtensionRequest AWS API Documentation
|
57515
|
+
#
|
57516
|
+
class PurchaseCapacityBlockExtensionRequest < Struct.new(
|
57517
|
+
:capacity_block_extension_offering_id,
|
57518
|
+
:capacity_reservation_id,
|
57519
|
+
:dry_run)
|
57520
|
+
SENSITIVE = []
|
57521
|
+
include Aws::Structure
|
57522
|
+
end
|
57523
|
+
|
57524
|
+
# @!attribute [rw] capacity_block_extensions
|
57525
|
+
# The purchased Capacity Block extensions.
|
57526
|
+
# @return [Array<Types::CapacityBlockExtension>]
|
57527
|
+
#
|
57528
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/PurchaseCapacityBlockExtensionResult AWS API Documentation
|
57529
|
+
#
|
57530
|
+
class PurchaseCapacityBlockExtensionResult < Struct.new(
|
57531
|
+
:capacity_block_extensions)
|
57532
|
+
SENSITIVE = []
|
57533
|
+
include Aws::Structure
|
57534
|
+
end
|
57535
|
+
|
56905
57536
|
# @!attribute [rw] dry_run
|
56906
57537
|
# Checks whether you have the required permissions for the action,
|
56907
57538
|
# without actually making the request, and provides an error response.
|
@@ -57972,6 +58603,59 @@ module Aws::EC2
|
|
57972
58603
|
include Aws::Structure
|
57973
58604
|
end
|
57974
58605
|
|
58606
|
+
# Remove an Organizational Unit (OU) exclusion to your IPAM. If your
|
58607
|
+
# IPAM is integrated with Amazon Web Services Organizations and you add
|
58608
|
+
# an organizational unit (OU) exclusion, IPAM will not manage the IP
|
58609
|
+
# addresses in accounts in that OU exclusion. There is a limit on the
|
58610
|
+
# number of exclusions you can create. For more information, see [Quotas
|
58611
|
+
# for your IPAM][1] in the *Amazon VPC IPAM User Guide*.
|
58612
|
+
#
|
58613
|
+
#
|
58614
|
+
#
|
58615
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/ipam/quotas-ipam.html
|
58616
|
+
#
|
58617
|
+
# @!attribute [rw] organizations_entity_path
|
58618
|
+
# An Amazon Web Services Organizations entity path. Build the path for
|
58619
|
+
# the OU(s) using Amazon Web Services Organizations IDs separated by a
|
58620
|
+
# `/`. Include all child OUs by ending the path with `/*`.
|
58621
|
+
#
|
58622
|
+
# * Example 1
|
58623
|
+
#
|
58624
|
+
# * Path to a child OU:
|
58625
|
+
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/ou-jkl0-awsddddd/`
|
58626
|
+
#
|
58627
|
+
# * In this example, `o-a1b2c3d4e5` is the organization ID,
|
58628
|
+
# `r-f6g7h8i9j0example` is the root ID , `ou-ghi0-awsccccc` is an
|
58629
|
+
# OU ID, and `ou-jkl0-awsddddd` is a child OU ID.
|
58630
|
+
#
|
58631
|
+
# * IPAM will not manage the IP addresses in accounts in the child
|
58632
|
+
# OU.
|
58633
|
+
# * Example 2
|
58634
|
+
#
|
58635
|
+
# * Path where all child OUs will be part of the exclusion:
|
58636
|
+
# `o-a1b2c3d4e5/r-f6g7h8i9j0example/ou-ghi0-awsccccc/*`
|
58637
|
+
#
|
58638
|
+
# * In this example, IPAM will not manage the IP addresses in
|
58639
|
+
# accounts in the OU (`ou-ghi0-awsccccc`) or in accounts in any
|
58640
|
+
# OUs that are children of the OU.
|
58641
|
+
#
|
58642
|
+
# For more information on how to construct an entity path, see
|
58643
|
+
# [Understand the Amazon Web Services Organizations entity path][1] in
|
58644
|
+
# the *Amazon Web Services Identity and Access Management User Guide*.
|
58645
|
+
#
|
58646
|
+
#
|
58647
|
+
#
|
58648
|
+
# [1]: https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_last-accessed-view-data-orgs.html#access_policies_access-advisor-viewing-orgs-entity-path
|
58649
|
+
# @return [String]
|
58650
|
+
#
|
58651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RemoveIpamOrganizationalUnitExclusion AWS API Documentation
|
58652
|
+
#
|
58653
|
+
class RemoveIpamOrganizationalUnitExclusion < Struct.new(
|
58654
|
+
:organizations_entity_path)
|
58655
|
+
SENSITIVE = []
|
58656
|
+
include Aws::Structure
|
58657
|
+
end
|
58658
|
+
|
57975
58659
|
# An entry for a prefix list.
|
57976
58660
|
#
|
57977
58661
|
# @!attribute [rw] cidr
|
@@ -70440,13 +71124,13 @@ module Aws::EC2
|
|
70440
71124
|
# @!attribute [rw] internet_gateway_exclusion_mode
|
70441
71125
|
# The exclusion mode for internet gateway traffic.
|
70442
71126
|
#
|
70443
|
-
# * `bidirectional
|
70444
|
-
#
|
71127
|
+
# * `allow-bidirectional`: Allow all internet traffic to and from the
|
71128
|
+
# excluded VPCs and subnets.
|
70445
71129
|
#
|
70446
|
-
# * `egress
|
70447
|
-
#
|
70448
|
-
#
|
70449
|
-
#
|
71130
|
+
# * `allow-egress`: Allow outbound internet traffic from the excluded
|
71131
|
+
# VPCs and subnets. Block inbound internet traffic to the excluded
|
71132
|
+
# VPCs and subnets. Only applies when VPC Block Public Access is set
|
71133
|
+
# to Bidirectional.
|
70450
71134
|
# @return [String]
|
70451
71135
|
#
|
70452
71136
|
# @!attribute [rw] resource_arn
|
@@ -70497,7 +71181,7 @@ module Aws::EC2
|
|
70497
71181
|
include Aws::Structure
|
70498
71182
|
end
|
70499
71183
|
|
70500
|
-
# VPC Block
|
71184
|
+
# VPC Block Public Access (BPA) enables you to block resources in VPCs
|
70501
71185
|
# and subnets that you own in a Region from reaching or being reached
|
70502
71186
|
# from the internet through internet gateways and egress-only internet
|
70503
71187
|
# gateways. To learn more about VPC BPA, see [Block public access to
|
@@ -70522,19 +71206,19 @@ module Aws::EC2
|
|
70522
71206
|
# @!attribute [rw] internet_gateway_block_mode
|
70523
71207
|
# The current mode of VPC BPA.
|
70524
71208
|
#
|
70525
|
-
# * `
|
70526
|
-
#
|
70527
|
-
#
|
71209
|
+
# * `off`: VPC BPA is not enabled and traffic is allowed to and from
|
71210
|
+
# internet gateways and egress-only internet gateways in this
|
71211
|
+
# Region.
|
70528
71212
|
#
|
70529
|
-
# * `bidirectional
|
70530
|
-
#
|
70531
|
-
#
|
71213
|
+
# * `block-bidirectional`: Block all traffic to and from internet
|
71214
|
+
# gateways and egress-only internet gateways in this Region (except
|
71215
|
+
# for excluded VPCs and subnets).
|
70532
71216
|
#
|
70533
|
-
# * `ingress
|
70534
|
-
#
|
70535
|
-
#
|
70536
|
-
#
|
70537
|
-
#
|
71217
|
+
# * `block-ingress`: Block all internet traffic to the VPCs in this
|
71218
|
+
# Region (except for VPCs or subnets which are excluded). Only
|
71219
|
+
# traffic to and from NAT gateways and egress-only internet gateways
|
71220
|
+
# is allowed because these gateways only allow outbound connections
|
71221
|
+
# to be established.
|
70538
71222
|
# @return [String]
|
70539
71223
|
#
|
70540
71224
|
# @!attribute [rw] reason
|