aws-sdk-ec2 1.417.0 → 1.420.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +431 -81
- data/lib/aws-sdk-ec2/client_api.rb +133 -2
- data/lib/aws-sdk-ec2/endpoints.rb +56 -0
- data/lib/aws-sdk-ec2/instance.rb +16 -3
- data/lib/aws-sdk-ec2/placement_group.rb +3 -2
- data/lib/aws-sdk-ec2/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-ec2/resource.rb +9 -2
- data/lib/aws-sdk-ec2/subnet.rb +9 -2
- data/lib/aws-sdk-ec2/types.rb +607 -146
- data/lib/aws-sdk-ec2/vpc.rb +3 -2
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -2799,11 +2799,11 @@ module Aws::EC2
|
|
2799
2799
|
end
|
2800
2800
|
|
2801
2801
|
# @!attribute [rw] verified_access_trust_provider
|
2802
|
-
#
|
2802
|
+
# Details about the Verified Access trust provider.
|
2803
2803
|
# @return [Types::VerifiedAccessTrustProvider]
|
2804
2804
|
#
|
2805
2805
|
# @!attribute [rw] verified_access_instance
|
2806
|
-
#
|
2806
|
+
# Details about the Verified Access instance.
|
2807
2807
|
# @return [Types::VerifiedAccessInstance]
|
2808
2808
|
#
|
2809
2809
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -2887,16 +2887,26 @@ module Aws::EC2
|
|
2887
2887
|
include Aws::Structure
|
2888
2888
|
end
|
2889
2889
|
|
2890
|
-
#
|
2891
|
-
#
|
2890
|
+
# ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD)
|
2891
|
+
# technology to increase the maximum bandwidth used per stream and
|
2892
|
+
# minimize tail latency of network traffic between EC2 instances. With
|
2893
|
+
# ENA Express, you can communicate between two EC2 instances in the same
|
2894
|
+
# subnet within the same account, or in different accounts. Both sending
|
2895
|
+
# and receiving instances must have ENA Express enabled.
|
2896
|
+
#
|
2897
|
+
# To improve the reliability of network packet delivery, ENA Express
|
2898
|
+
# reorders network packets on the receiving end by default. However,
|
2899
|
+
# some UDP-based applications are designed to handle network packets
|
2900
|
+
# that are out of order to reduce the overhead for packet delivery at
|
2901
|
+
# the network layer. When ENA Express is enabled, you can specify
|
2902
|
+
# whether UDP network traffic uses it.
|
2892
2903
|
#
|
2893
2904
|
# @!attribute [rw] ena_srd_enabled
|
2894
|
-
# Indicates whether ENA Express is enabled for the network interface
|
2895
|
-
# that's attached to the instance.
|
2905
|
+
# Indicates whether ENA Express is enabled for the network interface.
|
2896
2906
|
# @return [Boolean]
|
2897
2907
|
#
|
2898
2908
|
# @!attribute [rw] ena_srd_udp_specification
|
2899
|
-
# ENA Express
|
2909
|
+
# Configures ENA Express for UDP network traffic.
|
2900
2910
|
# @return [Types::AttachmentEnaSrdUdpSpecification]
|
2901
2911
|
#
|
2902
2912
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachmentEnaSrdSpecification AWS API Documentation
|
@@ -2908,8 +2918,13 @@ module Aws::EC2
|
|
2908
2918
|
include Aws::Structure
|
2909
2919
|
end
|
2910
2920
|
|
2911
|
-
#
|
2912
|
-
#
|
2921
|
+
# ENA Express is compatible with both TCP and UDP transport protocols.
|
2922
|
+
# When it's enabled, TCP traffic automatically uses it. However, some
|
2923
|
+
# UDP-based applications are designed to handle network packets that are
|
2924
|
+
# out of order, without a need for retransmission, such as live video
|
2925
|
+
# broadcasting or other near-real-time applications. For UDP traffic,
|
2926
|
+
# you can specify whether to use ENA Express, based on your application
|
2927
|
+
# environment needs.
|
2913
2928
|
#
|
2914
2929
|
# @!attribute [rw] ena_srd_udp_enabled
|
2915
2930
|
# Indicates whether UDP traffic to and from the instance uses ENA
|
@@ -7781,9 +7796,22 @@ module Aws::EC2
|
|
7781
7796
|
end
|
7782
7797
|
|
7783
7798
|
# @!attribute [rw] block_device_mappings
|
7784
|
-
# The block device mappings.
|
7785
|
-
#
|
7786
|
-
#
|
7799
|
+
# The block device mappings.
|
7800
|
+
#
|
7801
|
+
# When using the CreateImage action:
|
7802
|
+
#
|
7803
|
+
# * You can't change the volume size using the VolumeSize parameter.
|
7804
|
+
# If you want a different volume size, you must first change the
|
7805
|
+
# volume size of the source instance.
|
7806
|
+
#
|
7807
|
+
# * You can't modify the encryption status of existing volumes or
|
7808
|
+
# snapshots. To create an AMI with volumes or snapshots that have a
|
7809
|
+
# different encryption status (for example, where the source volume
|
7810
|
+
# and snapshots are unencrypted, and you want to create an AMI with
|
7811
|
+
# encrypted volumes or snapshots), use the CopyImage action.
|
7812
|
+
#
|
7813
|
+
# * The only option that can be changed for existing mappings or
|
7814
|
+
# snapshots is `DeleteOnTermination`.
|
7787
7815
|
# @return [Array<Types::BlockDeviceMapping>]
|
7788
7816
|
#
|
7789
7817
|
# @!attribute [rw] description
|
@@ -11512,7 +11540,7 @@ module Aws::EC2
|
|
11512
11540
|
#
|
11513
11541
|
# @!attribute [rw] security_group_ids
|
11514
11542
|
# The IDs of the security groups to associate with the Verified Access
|
11515
|
-
# endpoint.
|
11543
|
+
# endpoint. Required if `AttachmentType` is set to `vpc`.
|
11516
11544
|
# @return [Array<String>]
|
11517
11545
|
#
|
11518
11546
|
# @!attribute [rw] load_balancer_options
|
@@ -11558,7 +11586,7 @@ module Aws::EC2
|
|
11558
11586
|
# @return [Boolean]
|
11559
11587
|
#
|
11560
11588
|
# @!attribute [rw] sse_specification
|
11561
|
-
#
|
11589
|
+
# The options for server side encryption.
|
11562
11590
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
11563
11591
|
#
|
11564
11592
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessEndpointRequest AWS API Documentation
|
@@ -11584,7 +11612,7 @@ module Aws::EC2
|
|
11584
11612
|
end
|
11585
11613
|
|
11586
11614
|
# @!attribute [rw] verified_access_endpoint
|
11587
|
-
#
|
11615
|
+
# Details about the Verified Access endpoint.
|
11588
11616
|
# @return [Types::VerifiedAccessEndpoint]
|
11589
11617
|
#
|
11590
11618
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessEndpointResult AWS API Documentation
|
@@ -11632,7 +11660,7 @@ module Aws::EC2
|
|
11632
11660
|
# @return [Boolean]
|
11633
11661
|
#
|
11634
11662
|
# @!attribute [rw] sse_specification
|
11635
|
-
#
|
11663
|
+
# The options for server side encryption.
|
11636
11664
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
11637
11665
|
#
|
11638
11666
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessGroupRequest AWS API Documentation
|
@@ -11650,7 +11678,7 @@ module Aws::EC2
|
|
11650
11678
|
end
|
11651
11679
|
|
11652
11680
|
# @!attribute [rw] verified_access_group
|
11653
|
-
#
|
11681
|
+
# Details about the Verified Access group.
|
11654
11682
|
# @return [Types::VerifiedAccessGroup]
|
11655
11683
|
#
|
11656
11684
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessGroupResult AWS API Documentation
|
@@ -11707,7 +11735,7 @@ module Aws::EC2
|
|
11707
11735
|
end
|
11708
11736
|
|
11709
11737
|
# @!attribute [rw] verified_access_instance
|
11710
|
-
#
|
11738
|
+
# Details about the Verified Access instance.
|
11711
11739
|
# @return [Types::VerifiedAccessInstance]
|
11712
11740
|
#
|
11713
11741
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessInstanceResult AWS API Documentation
|
@@ -11838,7 +11866,7 @@ module Aws::EC2
|
|
11838
11866
|
# @return [Boolean]
|
11839
11867
|
#
|
11840
11868
|
# @!attribute [rw] sse_specification
|
11841
|
-
#
|
11869
|
+
# The options for server side encryption.
|
11842
11870
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
11843
11871
|
#
|
11844
11872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProviderRequest AWS API Documentation
|
@@ -11860,7 +11888,7 @@ module Aws::EC2
|
|
11860
11888
|
end
|
11861
11889
|
|
11862
11890
|
# @!attribute [rw] verified_access_trust_provider
|
11863
|
-
#
|
11891
|
+
# Details about the Verified Access trust provider.
|
11864
11892
|
# @return [Types::VerifiedAccessTrustProvider]
|
11865
11893
|
#
|
11866
11894
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -15054,7 +15082,7 @@ module Aws::EC2
|
|
15054
15082
|
end
|
15055
15083
|
|
15056
15084
|
# @!attribute [rw] verified_access_endpoint
|
15057
|
-
#
|
15085
|
+
# Details about the Verified Access endpoint.
|
15058
15086
|
# @return [Types::VerifiedAccessEndpoint]
|
15059
15087
|
#
|
15060
15088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessEndpointResult AWS API Documentation
|
@@ -15100,7 +15128,7 @@ module Aws::EC2
|
|
15100
15128
|
end
|
15101
15129
|
|
15102
15130
|
# @!attribute [rw] verified_access_group
|
15103
|
-
#
|
15131
|
+
# Details about the Verified Access group.
|
15104
15132
|
# @return [Types::VerifiedAccessGroup]
|
15105
15133
|
#
|
15106
15134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessGroupResult AWS API Documentation
|
@@ -15146,7 +15174,7 @@ module Aws::EC2
|
|
15146
15174
|
end
|
15147
15175
|
|
15148
15176
|
# @!attribute [rw] verified_access_instance
|
15149
|
-
#
|
15177
|
+
# Details about the Verified Access instance.
|
15150
15178
|
# @return [Types::VerifiedAccessInstance]
|
15151
15179
|
#
|
15152
15180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessInstanceResult AWS API Documentation
|
@@ -15192,7 +15220,7 @@ module Aws::EC2
|
|
15192
15220
|
end
|
15193
15221
|
|
15194
15222
|
# @!attribute [rw] verified_access_trust_provider
|
15195
|
-
#
|
15223
|
+
# Details about the Verified Access trust provider.
|
15196
15224
|
# @return [Types::VerifiedAccessTrustProvider]
|
15197
15225
|
#
|
15198
15226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -17440,7 +17468,7 @@ module Aws::EC2
|
|
17440
17468
|
end
|
17441
17469
|
|
17442
17470
|
# @!attribute [rw] image_ids
|
17443
|
-
#
|
17471
|
+
# Specify one or more Windows AMI image IDs for the request.
|
17444
17472
|
# @return [Array<String>]
|
17445
17473
|
#
|
17446
17474
|
# @!attribute [rw] filters
|
@@ -17448,9 +17476,6 @@ module Aws::EC2
|
|
17448
17476
|
#
|
17449
17477
|
# * `resource-type` - The resource type for pre-provisioning.
|
17450
17478
|
#
|
17451
|
-
# * `launch-template` - The launch template that is associated with
|
17452
|
-
# the pre-provisioned Windows AMI.
|
17453
|
-
#
|
17454
17479
|
# * `owner-id` - The owner ID for the pre-provisioning resource.
|
17455
17480
|
#
|
17456
17481
|
# * `state` - The current state of fast launching for the Windows AMI.
|
@@ -17510,17 +17535,17 @@ module Aws::EC2
|
|
17510
17535
|
include Aws::Structure
|
17511
17536
|
end
|
17512
17537
|
|
17513
|
-
# Describe details about a
|
17514
|
-
# the requested criteria. Criteria are defined by the
|
17538
|
+
# Describe details about a Windows image with Windows fast launch
|
17539
|
+
# enabled that meets the requested criteria. Criteria are defined by the
|
17515
17540
|
# `DescribeFastLaunchImages` action filters.
|
17516
17541
|
#
|
17517
17542
|
# @!attribute [rw] image_id
|
17518
|
-
# The image ID that identifies the fast
|
17543
|
+
# The image ID that identifies the Windows fast launch enabled image.
|
17519
17544
|
# @return [String]
|
17520
17545
|
#
|
17521
17546
|
# @!attribute [rw] resource_type
|
17522
|
-
# The resource type that
|
17523
|
-
# Supported values include: `snapshot`.
|
17547
|
+
# The resource type that Amazon EC2 uses for pre-provisioning the
|
17548
|
+
# Windows AMI. Supported values include: `snapshot`.
|
17524
17549
|
# @return [String]
|
17525
17550
|
#
|
17526
17551
|
# @!attribute [rw] snapshot_configuration
|
@@ -17529,32 +17554,33 @@ module Aws::EC2
|
|
17529
17554
|
# @return [Types::FastLaunchSnapshotConfigurationResponse]
|
17530
17555
|
#
|
17531
17556
|
# @!attribute [rw] launch_template
|
17532
|
-
# The launch template that the fast
|
17557
|
+
# The launch template that the Windows fast launch enabled AMI uses
|
17533
17558
|
# when it launches Windows instances from pre-provisioned snapshots.
|
17534
17559
|
# @return [Types::FastLaunchLaunchTemplateSpecificationResponse]
|
17535
17560
|
#
|
17536
17561
|
# @!attribute [rw] max_parallel_launches
|
17537
17562
|
# The maximum number of instances that Amazon EC2 can launch at the
|
17538
|
-
# same time to create pre-provisioned snapshots for Windows
|
17539
|
-
#
|
17563
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
17564
|
+
# launch.
|
17540
17565
|
# @return [Integer]
|
17541
17566
|
#
|
17542
17567
|
# @!attribute [rw] owner_id
|
17543
|
-
# The owner ID for the fast
|
17568
|
+
# The owner ID for the Windows fast launch enabled AMI.
|
17544
17569
|
# @return [String]
|
17545
17570
|
#
|
17546
17571
|
# @!attribute [rw] state
|
17547
|
-
# The current state of
|
17572
|
+
# The current state of Windows fast launch for the specified Windows
|
17573
|
+
# AMI.
|
17548
17574
|
# @return [String]
|
17549
17575
|
#
|
17550
17576
|
# @!attribute [rw] state_transition_reason
|
17551
|
-
# The reason that
|
17577
|
+
# The reason that Windows fast launch for the AMI changed to the
|
17552
17578
|
# current state.
|
17553
17579
|
# @return [String]
|
17554
17580
|
#
|
17555
17581
|
# @!attribute [rw] state_transition_time
|
17556
|
-
# The time that
|
17557
|
-
#
|
17582
|
+
# The time that Windows fast launch for the AMI changed to the current
|
17583
|
+
# state.
|
17558
17584
|
# @return [Time]
|
17559
17585
|
#
|
17560
17586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeFastLaunchImagesSuccessItem AWS API Documentation
|
@@ -19394,6 +19420,96 @@ module Aws::EC2
|
|
19394
19420
|
include Aws::Structure
|
19395
19421
|
end
|
19396
19422
|
|
19423
|
+
# @!attribute [rw] dry_run
|
19424
|
+
# Checks whether you have the required permissions for the action,
|
19425
|
+
# without actually making the request, and provides an error response.
|
19426
|
+
# If you have the required permissions, the error response is
|
19427
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
19428
|
+
# @return [Boolean]
|
19429
|
+
#
|
19430
|
+
# @!attribute [rw] next_token
|
19431
|
+
# The token returned from a previous paginated request. Pagination
|
19432
|
+
# continues from the end of the items returned by the previous
|
19433
|
+
# request.
|
19434
|
+
# @return [String]
|
19435
|
+
#
|
19436
|
+
# @!attribute [rw] max_results
|
19437
|
+
# The maximum number of items to return for this request. To get the
|
19438
|
+
# next page of items, make another request with the token returned in
|
19439
|
+
# the output. For more information, see [Pagination][1].
|
19440
|
+
#
|
19441
|
+
# You can't specify this parameter and the instance IDs parameter in
|
19442
|
+
# the same request.
|
19443
|
+
#
|
19444
|
+
# Default: `20`
|
19445
|
+
#
|
19446
|
+
#
|
19447
|
+
#
|
19448
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
19449
|
+
# @return [Integer]
|
19450
|
+
#
|
19451
|
+
# @!attribute [rw] instance_ids
|
19452
|
+
# The instance IDs.
|
19453
|
+
#
|
19454
|
+
# Default: Describes all your instances.
|
19455
|
+
#
|
19456
|
+
# Constraints: Maximum 100 explicitly specified instance IDs.
|
19457
|
+
# @return [Array<String>]
|
19458
|
+
#
|
19459
|
+
# @!attribute [rw] group_names
|
19460
|
+
# The name of the placement group that each instance is in.
|
19461
|
+
#
|
19462
|
+
# Constraints: Maximum 100 explicitly specified placement group names.
|
19463
|
+
# @return [Array<String>]
|
19464
|
+
#
|
19465
|
+
# @!attribute [rw] filters
|
19466
|
+
# The filters.
|
19467
|
+
#
|
19468
|
+
# * `availability-zone` - The name of the Availability Zone (for
|
19469
|
+
# example, `us-west-2a`) or Local Zone (for example,
|
19470
|
+
# `us-west-2-lax-1b`) that the instance is in.
|
19471
|
+
#
|
19472
|
+
# * `instance-type` - The instance type (for example, `p4d.24xlarge`)
|
19473
|
+
# or instance family (for example, `p4d*`). You can use the `*`
|
19474
|
+
# wildcard to match zero or more characters, or the `?` wildcard to
|
19475
|
+
# match zero or one character.
|
19476
|
+
#
|
19477
|
+
# * `zone-id` - The ID of the Availability Zone (for example,
|
19478
|
+
# `usw2-az2`) or Local Zone (for example, `usw2-lax1-az1`) that the
|
19479
|
+
# instance is in.
|
19480
|
+
# @return [Array<Types::Filter>]
|
19481
|
+
#
|
19482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTopologyRequest AWS API Documentation
|
19483
|
+
#
|
19484
|
+
class DescribeInstanceTopologyRequest < Struct.new(
|
19485
|
+
:dry_run,
|
19486
|
+
:next_token,
|
19487
|
+
:max_results,
|
19488
|
+
:instance_ids,
|
19489
|
+
:group_names,
|
19490
|
+
:filters)
|
19491
|
+
SENSITIVE = []
|
19492
|
+
include Aws::Structure
|
19493
|
+
end
|
19494
|
+
|
19495
|
+
# @!attribute [rw] instances
|
19496
|
+
# Information about the topology of each instance.
|
19497
|
+
# @return [Array<Types::InstanceTopology>]
|
19498
|
+
#
|
19499
|
+
# @!attribute [rw] next_token
|
19500
|
+
# The token to include in another request to get the next page of
|
19501
|
+
# items. This value is `null` when there are no more items to return.
|
19502
|
+
# @return [String]
|
19503
|
+
#
|
19504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeInstanceTopologyResult AWS API Documentation
|
19505
|
+
#
|
19506
|
+
class DescribeInstanceTopologyResult < Struct.new(
|
19507
|
+
:instances,
|
19508
|
+
:next_token)
|
19509
|
+
SENSITIVE = []
|
19510
|
+
include Aws::Structure
|
19511
|
+
end
|
19512
|
+
|
19397
19513
|
# @!attribute [rw] dry_run
|
19398
19514
|
# Checks whether you have the required permissions for the action,
|
19399
19515
|
# without actually making the request, and provides an error response.
|
@@ -19776,8 +19892,9 @@ module Aws::EC2
|
|
19776
19892
|
#
|
19777
19893
|
# * `instance-id` - The ID of the instance.
|
19778
19894
|
#
|
19779
|
-
# * `instance-lifecycle` - Indicates whether this is a Spot Instance
|
19780
|
-
#
|
19895
|
+
# * `instance-lifecycle` - Indicates whether this is a Spot Instance,
|
19896
|
+
# a Scheduled Instance, or a Capacity Block (`spot` \| `scheduled`
|
19897
|
+
# \| `capacity-block`).
|
19781
19898
|
#
|
19782
19899
|
# * `instance-state-code` - The state of the instance, as a 16-bit
|
19783
19900
|
# unsigned integer. The high byte is used for internal purposes and
|
@@ -25730,7 +25847,7 @@ module Aws::EC2
|
|
25730
25847
|
end
|
25731
25848
|
|
25732
25849
|
# @!attribute [rw] verified_access_endpoints
|
25733
|
-
#
|
25850
|
+
# Details about the Verified Access endpoints.
|
25734
25851
|
# @return [Array<Types::VerifiedAccessEndpoint>]
|
25735
25852
|
#
|
25736
25853
|
# @!attribute [rw] next_token
|
@@ -25790,7 +25907,7 @@ module Aws::EC2
|
|
25790
25907
|
end
|
25791
25908
|
|
25792
25909
|
# @!attribute [rw] verified_access_groups
|
25793
|
-
#
|
25910
|
+
# Details about the Verified Access groups.
|
25794
25911
|
# @return [Array<Types::VerifiedAccessGroup>]
|
25795
25912
|
#
|
25796
25913
|
# @!attribute [rw] next_token
|
@@ -25845,7 +25962,7 @@ module Aws::EC2
|
|
25845
25962
|
end
|
25846
25963
|
|
25847
25964
|
# @!attribute [rw] logging_configurations
|
25848
|
-
# The
|
25965
|
+
# The logging configuration for the Verified Access instances.
|
25849
25966
|
# @return [Array<Types::VerifiedAccessInstanceLoggingConfiguration>]
|
25850
25967
|
#
|
25851
25968
|
# @!attribute [rw] next_token
|
@@ -25900,7 +26017,7 @@ module Aws::EC2
|
|
25900
26017
|
end
|
25901
26018
|
|
25902
26019
|
# @!attribute [rw] verified_access_instances
|
25903
|
-
#
|
26020
|
+
# Details about the Verified Access instances.
|
25904
26021
|
# @return [Array<Types::VerifiedAccessInstance>]
|
25905
26022
|
#
|
25906
26023
|
# @!attribute [rw] next_token
|
@@ -25955,7 +26072,7 @@ module Aws::EC2
|
|
25955
26072
|
end
|
25956
26073
|
|
25957
26074
|
# @!attribute [rw] verified_access_trust_providers
|
25958
|
-
#
|
26075
|
+
# Details about the Verified Access trust providers.
|
25959
26076
|
# @return [Array<Types::VerifiedAccessTrustProvider>]
|
25960
26077
|
#
|
25961
26078
|
# @!attribute [rw] next_token
|
@@ -27489,11 +27606,11 @@ module Aws::EC2
|
|
27489
27606
|
end
|
27490
27607
|
|
27491
27608
|
# @!attribute [rw] verified_access_trust_provider
|
27492
|
-
#
|
27609
|
+
# Details about the Verified Access trust provider.
|
27493
27610
|
# @return [Types::VerifiedAccessTrustProvider]
|
27494
27611
|
#
|
27495
27612
|
# @!attribute [rw] verified_access_instance
|
27496
|
-
#
|
27613
|
+
# Details about the Verified Access instance.
|
27497
27614
|
# @return [Types::VerifiedAccessInstance]
|
27498
27615
|
#
|
27499
27616
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -27776,12 +27893,12 @@ module Aws::EC2
|
|
27776
27893
|
end
|
27777
27894
|
|
27778
27895
|
# @!attribute [rw] image_id
|
27779
|
-
#
|
27780
|
-
#
|
27896
|
+
# Specify the ID of the image for which to disable Windows fast
|
27897
|
+
# launch.
|
27781
27898
|
# @return [String]
|
27782
27899
|
#
|
27783
27900
|
# @!attribute [rw] force
|
27784
|
-
# Forces the image settings to turn off
|
27901
|
+
# Forces the image settings to turn off Windows fast launch for your
|
27785
27902
|
# Windows AMI. This parameter overrides any errors that are
|
27786
27903
|
# encountered while cleaning up resources in your account.
|
27787
27904
|
# @return [Boolean]
|
@@ -27804,19 +27921,19 @@ module Aws::EC2
|
|
27804
27921
|
end
|
27805
27922
|
|
27806
27923
|
# @!attribute [rw] image_id
|
27807
|
-
# The ID of the image for which
|
27924
|
+
# The ID of the image for which Windows fast launch was disabled.
|
27808
27925
|
# @return [String]
|
27809
27926
|
#
|
27810
27927
|
# @!attribute [rw] resource_type
|
27811
27928
|
# The pre-provisioning resource type that must be cleaned after
|
27812
|
-
# turning off
|
27813
|
-
# include: `snapshot`.
|
27929
|
+
# turning off Windows fast launch for the Windows AMI. Supported
|
27930
|
+
# values include: `snapshot`.
|
27814
27931
|
# @return [String]
|
27815
27932
|
#
|
27816
27933
|
# @!attribute [rw] snapshot_configuration
|
27817
|
-
# Parameters that were used for
|
27818
|
-
# before
|
27819
|
-
# process.
|
27934
|
+
# Parameters that were used for Windows fast launch for the Windows
|
27935
|
+
# AMI before Windows fast launch was disabled. This informs the
|
27936
|
+
# clean-up process.
|
27820
27937
|
# @return [Types::FastLaunchSnapshotConfigurationResponse]
|
27821
27938
|
#
|
27822
27939
|
# @!attribute [rw] launch_template
|
@@ -27826,27 +27943,28 @@ module Aws::EC2
|
|
27826
27943
|
#
|
27827
27944
|
# @!attribute [rw] max_parallel_launches
|
27828
27945
|
# The maximum number of instances that Amazon EC2 can launch at the
|
27829
|
-
# same time to create pre-provisioned snapshots for Windows
|
27830
|
-
#
|
27946
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
27947
|
+
# launch.
|
27831
27948
|
# @return [Integer]
|
27832
27949
|
#
|
27833
27950
|
# @!attribute [rw] owner_id
|
27834
|
-
# The owner of the Windows AMI for which
|
27835
|
-
#
|
27951
|
+
# The owner of the Windows AMI for which Windows fast launch was
|
27952
|
+
# disabled.
|
27836
27953
|
# @return [String]
|
27837
27954
|
#
|
27838
27955
|
# @!attribute [rw] state
|
27839
|
-
# The current state of
|
27956
|
+
# The current state of Windows fast launch for the specified Windows
|
27957
|
+
# AMI.
|
27840
27958
|
# @return [String]
|
27841
27959
|
#
|
27842
27960
|
# @!attribute [rw] state_transition_reason
|
27843
|
-
# The reason that the state changed for
|
27961
|
+
# The reason that the state changed for Windows fast launch for the
|
27844
27962
|
# Windows AMI.
|
27845
27963
|
# @return [String]
|
27846
27964
|
#
|
27847
27965
|
# @!attribute [rw] state_transition_time
|
27848
|
-
# The time that the state changed for
|
27849
|
-
# AMI.
|
27966
|
+
# The time that the state changed for Windows fast launch for the
|
27967
|
+
# Windows AMI.
|
27850
27968
|
# @return [Time]
|
27851
27969
|
#
|
27852
27970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableFastLaunchResult AWS API Documentation
|
@@ -28205,6 +28323,33 @@ module Aws::EC2
|
|
28205
28323
|
include Aws::Structure
|
28206
28324
|
end
|
28207
28325
|
|
28326
|
+
# @!attribute [rw] dry_run
|
28327
|
+
# Checks whether you have the required permissions for the action,
|
28328
|
+
# without actually making the request, and provides an error response.
|
28329
|
+
# If you have the required permissions, the error response is
|
28330
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
28331
|
+
# @return [Boolean]
|
28332
|
+
#
|
28333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableSnapshotBlockPublicAccessRequest AWS API Documentation
|
28334
|
+
#
|
28335
|
+
class DisableSnapshotBlockPublicAccessRequest < Struct.new(
|
28336
|
+
:dry_run)
|
28337
|
+
SENSITIVE = []
|
28338
|
+
include Aws::Structure
|
28339
|
+
end
|
28340
|
+
|
28341
|
+
# @!attribute [rw] state
|
28342
|
+
# Returns `unblocked` if the request succeeds.
|
28343
|
+
# @return [String]
|
28344
|
+
#
|
28345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DisableSnapshotBlockPublicAccessResult AWS API Documentation
|
28346
|
+
#
|
28347
|
+
class DisableSnapshotBlockPublicAccessResult < Struct.new(
|
28348
|
+
:state)
|
28349
|
+
SENSITIVE = []
|
28350
|
+
include Aws::Structure
|
28351
|
+
end
|
28352
|
+
|
28208
28353
|
# @!attribute [rw] transit_gateway_route_table_id
|
28209
28354
|
# The ID of the propagation route table.
|
28210
28355
|
# @return [String]
|
@@ -29722,8 +29867,30 @@ module Aws::EC2
|
|
29722
29867
|
include Aws::Structure
|
29723
29868
|
end
|
29724
29869
|
|
29870
|
+
# Launch instances with ENA Express settings configured from your launch
|
29871
|
+
# template.
|
29872
|
+
#
|
29873
|
+
# @!attribute [rw] ena_srd_enabled
|
29874
|
+
# Specifies whether ENA Express is enabled for the network interface
|
29875
|
+
# when you launch an instance from your launch template.
|
29876
|
+
# @return [Boolean]
|
29877
|
+
#
|
29878
|
+
# @!attribute [rw] ena_srd_udp_specification
|
29879
|
+
# Contains ENA Express settings for UDP network traffic in your launch
|
29880
|
+
# template.
|
29881
|
+
# @return [Types::EnaSrdUdpSpecificationRequest]
|
29882
|
+
#
|
29883
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdSpecificationRequest AWS API Documentation
|
29884
|
+
#
|
29885
|
+
class EnaSrdSpecificationRequest < Struct.new(
|
29886
|
+
:ena_srd_enabled,
|
29887
|
+
:ena_srd_udp_specification)
|
29888
|
+
SENSITIVE = []
|
29889
|
+
include Aws::Structure
|
29890
|
+
end
|
29891
|
+
|
29725
29892
|
# ENA Express is compatible with both TCP and UDP transport protocols.
|
29726
|
-
# When it
|
29893
|
+
# When it's enabled, TCP traffic automatically uses it. However, some
|
29727
29894
|
# UDP-based applications are designed to handle network packets that are
|
29728
29895
|
# out of order, without a need for retransmission, such as live video
|
29729
29896
|
# broadcasting or other near-real-time applications. For UDP traffic,
|
@@ -29731,8 +29898,8 @@ module Aws::EC2
|
|
29731
29898
|
# environment needs.
|
29732
29899
|
#
|
29733
29900
|
# @!attribute [rw] ena_srd_udp_enabled
|
29734
|
-
# Indicates whether UDP traffic
|
29735
|
-
# setting, you must first enable ENA Express.
|
29901
|
+
# Indicates whether UDP traffic to and from the instance uses ENA
|
29902
|
+
# Express. To specify this setting, you must first enable ENA Express.
|
29736
29903
|
# @return [Boolean]
|
29737
29904
|
#
|
29738
29905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdUdpSpecification AWS API Documentation
|
@@ -29743,6 +29910,24 @@ module Aws::EC2
|
|
29743
29910
|
include Aws::Structure
|
29744
29911
|
end
|
29745
29912
|
|
29913
|
+
# Configures ENA Express for UDP network traffic from your launch
|
29914
|
+
# template.
|
29915
|
+
#
|
29916
|
+
# @!attribute [rw] ena_srd_udp_enabled
|
29917
|
+
# Indicates whether UDP traffic uses ENA Express for your instance. To
|
29918
|
+
# ensure that UDP traffic can use ENA Express when you launch an
|
29919
|
+
# instance, you must also set **EnaSrdEnabled** in the
|
29920
|
+
# **EnaSrdSpecificationRequest** to `true` in your launch template.
|
29921
|
+
# @return [Boolean]
|
29922
|
+
#
|
29923
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdUdpSpecificationRequest AWS API Documentation
|
29924
|
+
#
|
29925
|
+
class EnaSrdUdpSpecificationRequest < Struct.new(
|
29926
|
+
:ena_srd_udp_enabled)
|
29927
|
+
SENSITIVE = []
|
29928
|
+
include Aws::Structure
|
29929
|
+
end
|
29930
|
+
|
29746
29931
|
# @!attribute [rw] allocation_id
|
29747
29932
|
# The allocation ID of an Elastic IP address.
|
29748
29933
|
# @return [String]
|
@@ -29858,19 +30043,19 @@ module Aws::EC2
|
|
29858
30043
|
end
|
29859
30044
|
|
29860
30045
|
# @!attribute [rw] image_id
|
29861
|
-
#
|
30046
|
+
# Specify the ID of the image for which to enable Windows fast launch.
|
29862
30047
|
# @return [String]
|
29863
30048
|
#
|
29864
30049
|
# @!attribute [rw] resource_type
|
29865
|
-
# The type of resource to use for pre-provisioning the
|
29866
|
-
#
|
30050
|
+
# The type of resource to use for pre-provisioning the AMI for Windows
|
30051
|
+
# fast launch. Supported values include: `snapshot`, which is the
|
29867
30052
|
# default value.
|
29868
30053
|
# @return [String]
|
29869
30054
|
#
|
29870
30055
|
# @!attribute [rw] snapshot_configuration
|
29871
30056
|
# Configuration settings for creating and managing the snapshots that
|
29872
|
-
# are used for pre-provisioning the
|
29873
|
-
#
|
30057
|
+
# are used for pre-provisioning the AMI for Windows fast launch. The
|
30058
|
+
# associated `ResourceType` must be `snapshot`.
|
29874
30059
|
# @return [Types::FastLaunchSnapshotConfigurationRequest]
|
29875
30060
|
#
|
29876
30061
|
# @!attribute [rw] launch_template
|
@@ -29881,8 +30066,8 @@ module Aws::EC2
|
|
29881
30066
|
#
|
29882
30067
|
# @!attribute [rw] max_parallel_launches
|
29883
30068
|
# The maximum number of instances that Amazon EC2 can launch at the
|
29884
|
-
# same time to create pre-provisioned snapshots for Windows
|
29885
|
-
#
|
30069
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
30070
|
+
# launch. Value must be `6` or greater.
|
29886
30071
|
# @return [Integer]
|
29887
30072
|
#
|
29888
30073
|
# @!attribute [rw] dry_run
|
@@ -29906,13 +30091,13 @@ module Aws::EC2
|
|
29906
30091
|
end
|
29907
30092
|
|
29908
30093
|
# @!attribute [rw] image_id
|
29909
|
-
# The image ID that identifies the
|
29910
|
-
#
|
30094
|
+
# The image ID that identifies the AMI for which Windows fast launch
|
30095
|
+
# was enabled.
|
29911
30096
|
# @return [String]
|
29912
30097
|
#
|
29913
30098
|
# @!attribute [rw] resource_type
|
29914
|
-
# The type of resource that was defined for pre-provisioning the
|
29915
|
-
# Windows
|
30099
|
+
# The type of resource that was defined for pre-provisioning the AMI
|
30100
|
+
# for Windows fast launch.
|
29916
30101
|
# @return [String]
|
29917
30102
|
#
|
29918
30103
|
# @!attribute [rw] snapshot_configuration
|
@@ -29929,27 +30114,25 @@ module Aws::EC2
|
|
29929
30114
|
#
|
29930
30115
|
# @!attribute [rw] max_parallel_launches
|
29931
30116
|
# The maximum number of instances that Amazon EC2 can launch at the
|
29932
|
-
# same time to create pre-provisioned snapshots for Windows
|
29933
|
-
#
|
30117
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
30118
|
+
# launch.
|
29934
30119
|
# @return [Integer]
|
29935
30120
|
#
|
29936
30121
|
# @!attribute [rw] owner_id
|
29937
|
-
# The owner ID for the
|
29938
|
-
# enabled.
|
30122
|
+
# The owner ID for the AMI for which Windows fast launch was enabled.
|
29939
30123
|
# @return [String]
|
29940
30124
|
#
|
29941
30125
|
# @!attribute [rw] state
|
29942
|
-
# The current state of
|
30126
|
+
# The current state of Windows fast launch for the specified AMI.
|
29943
30127
|
# @return [String]
|
29944
30128
|
#
|
29945
30129
|
# @!attribute [rw] state_transition_reason
|
29946
|
-
# The reason that the state changed for
|
29947
|
-
#
|
30130
|
+
# The reason that the state changed for Windows fast launch for the
|
30131
|
+
# AMI.
|
29948
30132
|
# @return [String]
|
29949
30133
|
#
|
29950
30134
|
# @!attribute [rw] state_transition_time
|
29951
|
-
# The time that the state changed for
|
29952
|
-
# AMI.
|
30135
|
+
# The time that the state changed for Windows fast launch for the AMI.
|
29953
30136
|
# @return [Time]
|
29954
30137
|
#
|
29955
30138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableFastLaunchResult AWS API Documentation
|
@@ -30353,6 +30536,62 @@ module Aws::EC2
|
|
30353
30536
|
include Aws::Structure
|
30354
30537
|
end
|
30355
30538
|
|
30539
|
+
# @!attribute [rw] state
|
30540
|
+
# The mode in which to enable block public access for snapshots for
|
30541
|
+
# the Region. Specify one of the following values:
|
30542
|
+
#
|
30543
|
+
# * `block-all-sharing` - Prevents all public sharing of snapshots in
|
30544
|
+
# the Region. Users in the account will no longer be able to request
|
30545
|
+
# new public sharing. Additionally, snapshots that are already
|
30546
|
+
# publicly shared are treated as private and they are no longer
|
30547
|
+
# publicly available.
|
30548
|
+
#
|
30549
|
+
# <note markdown="1"> If you enable block public access for snapshots in
|
30550
|
+
# `block-all-sharing` mode, it does not change the permissions for
|
30551
|
+
# snapshots that are already publicly shared. Instead, it prevents
|
30552
|
+
# these snapshots from be publicly visible and publicly accessible.
|
30553
|
+
# Therefore, the attributes for these snapshots still indicate that
|
30554
|
+
# they are publicly shared, even though they are not publicly
|
30555
|
+
# available.
|
30556
|
+
#
|
30557
|
+
# </note>
|
30558
|
+
#
|
30559
|
+
# * `block-new-sharing` - Prevents only new public sharing of
|
30560
|
+
# snapshots in the Region. Users in the account will no longer be
|
30561
|
+
# able to request new public sharing. However, snapshots that are
|
30562
|
+
# already publicly shared, remain publicly available.
|
30563
|
+
# @return [String]
|
30564
|
+
#
|
30565
|
+
# @!attribute [rw] dry_run
|
30566
|
+
# Checks whether you have the required permissions for the action,
|
30567
|
+
# without actually making the request, and provides an error response.
|
30568
|
+
# If you have the required permissions, the error response is
|
30569
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
30570
|
+
# @return [Boolean]
|
30571
|
+
#
|
30572
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableSnapshotBlockPublicAccessRequest AWS API Documentation
|
30573
|
+
#
|
30574
|
+
class EnableSnapshotBlockPublicAccessRequest < Struct.new(
|
30575
|
+
:state,
|
30576
|
+
:dry_run)
|
30577
|
+
SENSITIVE = []
|
30578
|
+
include Aws::Structure
|
30579
|
+
end
|
30580
|
+
|
30581
|
+
# @!attribute [rw] state
|
30582
|
+
# The state of block public access for snapshots for the account and
|
30583
|
+
# Region. Returns either `block-all-sharing` or `block-new-sharing` if
|
30584
|
+
# the request succeeds.
|
30585
|
+
# @return [String]
|
30586
|
+
#
|
30587
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableSnapshotBlockPublicAccessResult AWS API Documentation
|
30588
|
+
#
|
30589
|
+
class EnableSnapshotBlockPublicAccessResult < Struct.new(
|
30590
|
+
:state)
|
30591
|
+
SENSITIVE = []
|
30592
|
+
include Aws::Structure
|
30593
|
+
end
|
30594
|
+
|
30356
30595
|
# @!attribute [rw] transit_gateway_route_table_id
|
30357
30596
|
# The ID of the propagation route table.
|
30358
30597
|
# @return [String]
|
@@ -31442,7 +31681,7 @@ module Aws::EC2
|
|
31442
31681
|
include Aws::Structure
|
31443
31682
|
end
|
31444
31683
|
|
31445
|
-
# Request to create a launch template for a fast
|
31684
|
+
# Request to create a launch template for a Windows fast launch enabled
|
31446
31685
|
# AMI.
|
31447
31686
|
#
|
31448
31687
|
# <note markdown="1"> Note - You can specify either the `LaunchTemplateName` or the
|
@@ -31451,18 +31690,18 @@ module Aws::EC2
|
|
31451
31690
|
# </note>
|
31452
31691
|
#
|
31453
31692
|
# @!attribute [rw] launch_template_id
|
31454
|
-
#
|
31455
|
-
# Windows
|
31693
|
+
# Specify the ID of the launch template that the AMI should use for
|
31694
|
+
# Windows fast launch.
|
31456
31695
|
# @return [String]
|
31457
31696
|
#
|
31458
31697
|
# @!attribute [rw] launch_template_name
|
31459
|
-
#
|
31460
|
-
# Windows
|
31698
|
+
# Specify the name of the launch template that the AMI should use for
|
31699
|
+
# Windows fast launch.
|
31461
31700
|
# @return [String]
|
31462
31701
|
#
|
31463
31702
|
# @!attribute [rw] version
|
31464
|
-
#
|
31465
|
-
# Windows
|
31703
|
+
# Specify the version of the launch template that the AMI should use
|
31704
|
+
# for Windows fast launch.
|
31466
31705
|
# @return [String]
|
31467
31706
|
#
|
31468
31707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchLaunchTemplateSpecificationRequest AWS API Documentation
|
@@ -31475,22 +31714,22 @@ module Aws::EC2
|
|
31475
31714
|
include Aws::Structure
|
31476
31715
|
end
|
31477
31716
|
|
31478
|
-
# Identifies the launch template
|
31479
|
-
#
|
31717
|
+
# Identifies the launch template that the AMI uses for Windows fast
|
31718
|
+
# launch.
|
31480
31719
|
#
|
31481
31720
|
# @!attribute [rw] launch_template_id
|
31482
|
-
# The ID of the launch template
|
31483
|
-
#
|
31721
|
+
# The ID of the launch template that the AMI uses for Windows fast
|
31722
|
+
# launch.
|
31484
31723
|
# @return [String]
|
31485
31724
|
#
|
31486
31725
|
# @!attribute [rw] launch_template_name
|
31487
|
-
# The name of the launch template
|
31488
|
-
#
|
31726
|
+
# The name of the launch template that the AMI uses for Windows fast
|
31727
|
+
# launch.
|
31489
31728
|
# @return [String]
|
31490
31729
|
#
|
31491
31730
|
# @!attribute [rw] version
|
31492
|
-
# The version of the launch template
|
31493
|
-
#
|
31731
|
+
# The version of the launch template that the AMI uses for Windows
|
31732
|
+
# fast launch.
|
31494
31733
|
# @return [String]
|
31495
31734
|
#
|
31496
31735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchLaunchTemplateSpecificationResponse AWS API Documentation
|
@@ -31504,11 +31743,11 @@ module Aws::EC2
|
|
31504
31743
|
end
|
31505
31744
|
|
31506
31745
|
# Configuration settings for creating and managing pre-provisioned
|
31507
|
-
# snapshots for a fast
|
31746
|
+
# snapshots for a Windows fast launch enabled AMI.
|
31508
31747
|
#
|
31509
31748
|
# @!attribute [rw] target_resource_count
|
31510
31749
|
# The number of pre-provisioned snapshots to keep on hand for a
|
31511
|
-
# fast
|
31750
|
+
# Windows fast launch enabled AMI.
|
31512
31751
|
# @return [Integer]
|
31513
31752
|
#
|
31514
31753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchSnapshotConfigurationRequest AWS API Documentation
|
@@ -31520,11 +31759,11 @@ module Aws::EC2
|
|
31520
31759
|
end
|
31521
31760
|
|
31522
31761
|
# Configuration settings for creating and managing pre-provisioned
|
31523
|
-
# snapshots for a fast
|
31762
|
+
# snapshots for a Windows fast launch enabled Windows AMI.
|
31524
31763
|
#
|
31525
31764
|
# @!attribute [rw] target_resource_count
|
31526
31765
|
# The number of pre-provisioned snapshots requested to keep on hand
|
31527
|
-
# for a fast
|
31766
|
+
# for a Windows fast launch enabled AMI.
|
31528
31767
|
# @return [Integer]
|
31529
31768
|
#
|
31530
31769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchSnapshotConfigurationResponse AWS API Documentation
|
@@ -33053,12 +33292,18 @@ module Aws::EC2
|
|
33053
33292
|
# The ID of the local gateway route table.
|
33054
33293
|
# @return [String]
|
33055
33294
|
#
|
33295
|
+
# @!attribute [rw] next_token
|
33296
|
+
# The token to use to retrieve the next page of results. This value is
|
33297
|
+
# `null` when there are no more results to return.
|
33298
|
+
# @return [String]
|
33299
|
+
#
|
33056
33300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetCoipPoolUsageResult AWS API Documentation
|
33057
33301
|
#
|
33058
33302
|
class GetCoipPoolUsageResult < Struct.new(
|
33059
33303
|
:coip_pool_id,
|
33060
33304
|
:coip_address_usages,
|
33061
|
-
:local_gateway_route_table_id
|
33305
|
+
:local_gateway_route_table_id,
|
33306
|
+
:next_token)
|
33062
33307
|
SENSITIVE = []
|
33063
33308
|
include Aws::Structure
|
33064
33309
|
end
|
@@ -34392,6 +34637,47 @@ module Aws::EC2
|
|
34392
34637
|
include Aws::Structure
|
34393
34638
|
end
|
34394
34639
|
|
34640
|
+
# @!attribute [rw] dry_run
|
34641
|
+
# Checks whether you have the required permissions for the action,
|
34642
|
+
# without actually making the request, and provides an error response.
|
34643
|
+
# If you have the required permissions, the error response is
|
34644
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
34645
|
+
# @return [Boolean]
|
34646
|
+
#
|
34647
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSnapshotBlockPublicAccessStateRequest AWS API Documentation
|
34648
|
+
#
|
34649
|
+
class GetSnapshotBlockPublicAccessStateRequest < Struct.new(
|
34650
|
+
:dry_run)
|
34651
|
+
SENSITIVE = []
|
34652
|
+
include Aws::Structure
|
34653
|
+
end
|
34654
|
+
|
34655
|
+
# @!attribute [rw] state
|
34656
|
+
# The current state of block public access for snapshots. Possible
|
34657
|
+
# values include:
|
34658
|
+
#
|
34659
|
+
# * `block-all-sharing` - All public sharing of snapshots is blocked.
|
34660
|
+
# Users in the account can't request new public sharing.
|
34661
|
+
# Additionally, snapshots that were already publicly shared are
|
34662
|
+
# treated as private and are not publicly available.
|
34663
|
+
#
|
34664
|
+
# * `block-new-sharing` - Only new public sharing of snapshots is
|
34665
|
+
# blocked. Users in the account can't request new public sharing.
|
34666
|
+
# However, snapshots that were already publicly shared, remain
|
34667
|
+
# publicly available.
|
34668
|
+
#
|
34669
|
+
# * `unblocked` - Public sharing is not blocked. Users can publicly
|
34670
|
+
# share snapshots.
|
34671
|
+
# @return [String]
|
34672
|
+
#
|
34673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetSnapshotBlockPublicAccessStateResult AWS API Documentation
|
34674
|
+
#
|
34675
|
+
class GetSnapshotBlockPublicAccessStateResult < Struct.new(
|
34676
|
+
:state)
|
34677
|
+
SENSITIVE = []
|
34678
|
+
include Aws::Structure
|
34679
|
+
end
|
34680
|
+
|
34395
34681
|
# @!attribute [rw] instance_types
|
34396
34682
|
# The instance types. We recommend that you specify at least three
|
34397
34683
|
# instance types. If you specify one or two instance types, or specify
|
@@ -37698,6 +37984,58 @@ module Aws::EC2
|
|
37698
37984
|
include Aws::Structure
|
37699
37985
|
end
|
37700
37986
|
|
37987
|
+
# ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD)
|
37988
|
+
# technology to increase the maximum bandwidth used per stream and
|
37989
|
+
# minimize tail latency of network traffic between EC2 instances. With
|
37990
|
+
# ENA Express, you can communicate between two EC2 instances in the same
|
37991
|
+
# subnet within the same account, or in different accounts. Both sending
|
37992
|
+
# and receiving instances must have ENA Express enabled.
|
37993
|
+
#
|
37994
|
+
# To improve the reliability of network packet delivery, ENA Express
|
37995
|
+
# reorders network packets on the receiving end by default. However,
|
37996
|
+
# some UDP-based applications are designed to handle network packets
|
37997
|
+
# that are out of order to reduce the overhead for packet delivery at
|
37998
|
+
# the network layer. When ENA Express is enabled, you can specify
|
37999
|
+
# whether UDP network traffic uses it.
|
38000
|
+
#
|
38001
|
+
# @!attribute [rw] ena_srd_enabled
|
38002
|
+
# Indicates whether ENA Express is enabled for the network interface.
|
38003
|
+
# @return [Boolean]
|
38004
|
+
#
|
38005
|
+
# @!attribute [rw] ena_srd_udp_specification
|
38006
|
+
# Configures ENA Express for UDP network traffic.
|
38007
|
+
# @return [Types::InstanceAttachmentEnaSrdUdpSpecification]
|
38008
|
+
#
|
38009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceAttachmentEnaSrdSpecification AWS API Documentation
|
38010
|
+
#
|
38011
|
+
class InstanceAttachmentEnaSrdSpecification < Struct.new(
|
38012
|
+
:ena_srd_enabled,
|
38013
|
+
:ena_srd_udp_specification)
|
38014
|
+
SENSITIVE = []
|
38015
|
+
include Aws::Structure
|
38016
|
+
end
|
38017
|
+
|
38018
|
+
# ENA Express is compatible with both TCP and UDP transport protocols.
|
38019
|
+
# When it's enabled, TCP traffic automatically uses it. However, some
|
38020
|
+
# UDP-based applications are designed to handle network packets that are
|
38021
|
+
# out of order, without a need for retransmission, such as live video
|
38022
|
+
# broadcasting or other near-real-time applications. For UDP traffic,
|
38023
|
+
# you can specify whether to use ENA Express, based on your application
|
38024
|
+
# environment needs.
|
38025
|
+
#
|
38026
|
+
# @!attribute [rw] ena_srd_udp_enabled
|
38027
|
+
# Indicates whether UDP traffic to and from the instance uses ENA
|
38028
|
+
# Express. To specify this setting, you must first enable ENA Express.
|
38029
|
+
# @return [Boolean]
|
38030
|
+
#
|
38031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceAttachmentEnaSrdUdpSpecification AWS API Documentation
|
38032
|
+
#
|
38033
|
+
class InstanceAttachmentEnaSrdUdpSpecification < Struct.new(
|
38034
|
+
:ena_srd_udp_enabled)
|
38035
|
+
SENSITIVE = []
|
38036
|
+
include Aws::Structure
|
38037
|
+
end
|
38038
|
+
|
37701
38039
|
# Describes an instance attribute.
|
37702
38040
|
#
|
37703
38041
|
# @!attribute [rw] groups
|
@@ -38652,6 +38990,11 @@ module Aws::EC2
|
|
38652
38990
|
# The index of the network card.
|
38653
38991
|
# @return [Integer]
|
38654
38992
|
#
|
38993
|
+
# @!attribute [rw] ena_srd_specification
|
38994
|
+
# Contains the ENA Express settings for the network interface that's
|
38995
|
+
# attached to the instance.
|
38996
|
+
# @return [Types::InstanceAttachmentEnaSrdSpecification]
|
38997
|
+
#
|
38655
38998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceAttachment AWS API Documentation
|
38656
38999
|
#
|
38657
39000
|
class InstanceNetworkInterfaceAttachment < Struct.new(
|
@@ -38660,7 +39003,8 @@ module Aws::EC2
|
|
38660
39003
|
:delete_on_termination,
|
38661
39004
|
:device_index,
|
38662
39005
|
:status,
|
38663
|
-
:network_card_index
|
39006
|
+
:network_card_index,
|
39007
|
+
:ena_srd_specification)
|
38664
39008
|
SENSITIVE = []
|
38665
39009
|
include Aws::Structure
|
38666
39010
|
end
|
@@ -38831,6 +39175,11 @@ module Aws::EC2
|
|
38831
39175
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
38832
39176
|
# @return [Boolean]
|
38833
39177
|
#
|
39178
|
+
# @!attribute [rw] ena_srd_specification
|
39179
|
+
# Specifies the ENA Express settings for the network interface that's
|
39180
|
+
# attached to the instance.
|
39181
|
+
# @return [Types::EnaSrdSpecificationRequest]
|
39182
|
+
#
|
38834
39183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
|
38835
39184
|
#
|
38836
39185
|
class InstanceNetworkInterfaceSpecification < Struct.new(
|
@@ -38853,7 +39202,8 @@ module Aws::EC2
|
|
38853
39202
|
:ipv_4_prefix_count,
|
38854
39203
|
:ipv_6_prefixes,
|
38855
39204
|
:ipv_6_prefix_count,
|
38856
|
-
:primary_ipv_6
|
39205
|
+
:primary_ipv_6,
|
39206
|
+
:ena_srd_specification)
|
38857
39207
|
SENSITIVE = []
|
38858
39208
|
include Aws::Structure
|
38859
39209
|
end
|
@@ -40044,6 +40394,49 @@ module Aws::EC2
|
|
40044
40394
|
include Aws::Structure
|
40045
40395
|
end
|
40046
40396
|
|
40397
|
+
# Information about the instance topology.
|
40398
|
+
#
|
40399
|
+
# @!attribute [rw] instance_id
|
40400
|
+
# The instance ID.
|
40401
|
+
# @return [String]
|
40402
|
+
#
|
40403
|
+
# @!attribute [rw] instance_type
|
40404
|
+
# The instance type.
|
40405
|
+
# @return [String]
|
40406
|
+
#
|
40407
|
+
# @!attribute [rw] group_name
|
40408
|
+
# The name of the placement group that the instance is in.
|
40409
|
+
# @return [String]
|
40410
|
+
#
|
40411
|
+
# @!attribute [rw] network_nodes
|
40412
|
+
# The network nodes. The nodes are hashed based on your account.
|
40413
|
+
# Instances from different accounts running under the same droplet
|
40414
|
+
# will return a different hashed list of strings.
|
40415
|
+
# @return [Array<String>]
|
40416
|
+
#
|
40417
|
+
# @!attribute [rw] availability_zone
|
40418
|
+
# The name of the Availability Zone or Local Zone that the instance is
|
40419
|
+
# in.
|
40420
|
+
# @return [String]
|
40421
|
+
#
|
40422
|
+
# @!attribute [rw] zone_id
|
40423
|
+
# The ID of the Availability Zone or Local Zone that the instance is
|
40424
|
+
# in.
|
40425
|
+
# @return [String]
|
40426
|
+
#
|
40427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceTopology AWS API Documentation
|
40428
|
+
#
|
40429
|
+
class InstanceTopology < Struct.new(
|
40430
|
+
:instance_id,
|
40431
|
+
:instance_type,
|
40432
|
+
:group_name,
|
40433
|
+
:network_nodes,
|
40434
|
+
:availability_zone,
|
40435
|
+
:zone_id)
|
40436
|
+
SENSITIVE = []
|
40437
|
+
include Aws::Structure
|
40438
|
+
end
|
40439
|
+
|
40047
40440
|
# Describes the instance type.
|
40048
40441
|
#
|
40049
40442
|
# @!attribute [rw] instance_type
|
@@ -42478,6 +42871,58 @@ module Aws::EC2
|
|
42478
42871
|
include Aws::Structure
|
42479
42872
|
end
|
42480
42873
|
|
42874
|
+
# ENA Express uses Amazon Web Services Scalable Reliable Datagram (SRD)
|
42875
|
+
# technology to increase the maximum bandwidth used per stream and
|
42876
|
+
# minimize tail latency of network traffic between EC2 instances. With
|
42877
|
+
# ENA Express, you can communicate between two EC2 instances in the same
|
42878
|
+
# subnet within the same account, or in different accounts. Both sending
|
42879
|
+
# and receiving instances must have ENA Express enabled.
|
42880
|
+
#
|
42881
|
+
# To improve the reliability of network packet delivery, ENA Express
|
42882
|
+
# reorders network packets on the receiving end by default. However,
|
42883
|
+
# some UDP-based applications are designed to handle network packets
|
42884
|
+
# that are out of order to reduce the overhead for packet delivery at
|
42885
|
+
# the network layer. When ENA Express is enabled, you can specify
|
42886
|
+
# whether UDP network traffic uses it.
|
42887
|
+
#
|
42888
|
+
# @!attribute [rw] ena_srd_enabled
|
42889
|
+
# Indicates whether ENA Express is enabled for the network interface.
|
42890
|
+
# @return [Boolean]
|
42891
|
+
#
|
42892
|
+
# @!attribute [rw] ena_srd_udp_specification
|
42893
|
+
# Configures ENA Express for UDP network traffic.
|
42894
|
+
# @return [Types::LaunchTemplateEnaSrdUdpSpecification]
|
42895
|
+
#
|
42896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnaSrdSpecification AWS API Documentation
|
42897
|
+
#
|
42898
|
+
class LaunchTemplateEnaSrdSpecification < Struct.new(
|
42899
|
+
:ena_srd_enabled,
|
42900
|
+
:ena_srd_udp_specification)
|
42901
|
+
SENSITIVE = []
|
42902
|
+
include Aws::Structure
|
42903
|
+
end
|
42904
|
+
|
42905
|
+
# ENA Express is compatible with both TCP and UDP transport protocols.
|
42906
|
+
# When it's enabled, TCP traffic automatically uses it. However, some
|
42907
|
+
# UDP-based applications are designed to handle network packets that are
|
42908
|
+
# out of order, without a need for retransmission, such as live video
|
42909
|
+
# broadcasting or other near-real-time applications. For UDP traffic,
|
42910
|
+
# you can specify whether to use ENA Express, based on your application
|
42911
|
+
# environment needs.
|
42912
|
+
#
|
42913
|
+
# @!attribute [rw] ena_srd_udp_enabled
|
42914
|
+
# Indicates whether UDP traffic to and from the instance uses ENA
|
42915
|
+
# Express. To specify this setting, you must first enable ENA Express.
|
42916
|
+
# @return [Boolean]
|
42917
|
+
#
|
42918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateEnaSrdUdpSpecification AWS API Documentation
|
42919
|
+
#
|
42920
|
+
class LaunchTemplateEnaSrdUdpSpecification < Struct.new(
|
42921
|
+
:ena_srd_udp_enabled)
|
42922
|
+
SENSITIVE = []
|
42923
|
+
include Aws::Structure
|
42924
|
+
end
|
42925
|
+
|
42481
42926
|
# Indicates whether the instance is enabled for Amazon Web Services
|
42482
42927
|
# Nitro Enclaves.
|
42483
42928
|
#
|
@@ -42940,6 +43385,11 @@ module Aws::EC2
|
|
42940
43385
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
42941
43386
|
# @return [Boolean]
|
42942
43387
|
#
|
43388
|
+
# @!attribute [rw] ena_srd_specification
|
43389
|
+
# Contains the ENA Express settings for instances launched from your
|
43390
|
+
# launch template.
|
43391
|
+
# @return [Types::LaunchTemplateEnaSrdSpecification]
|
43392
|
+
#
|
42943
43393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
|
42944
43394
|
#
|
42945
43395
|
class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
|
@@ -42962,7 +43412,8 @@ module Aws::EC2
|
|
42962
43412
|
:ipv_4_prefix_count,
|
42963
43413
|
:ipv_6_prefixes,
|
42964
43414
|
:ipv_6_prefix_count,
|
42965
|
-
:primary_ipv_6
|
43415
|
+
:primary_ipv_6,
|
43416
|
+
:ena_srd_specification)
|
42966
43417
|
SENSITIVE = []
|
42967
43418
|
include Aws::Structure
|
42968
43419
|
end
|
@@ -43094,6 +43545,10 @@ module Aws::EC2
|
|
43094
43545
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43095
43546
|
# @return [Boolean]
|
43096
43547
|
#
|
43548
|
+
# @!attribute [rw] ena_srd_specification
|
43549
|
+
# Configure ENA Express settings for your launch template.
|
43550
|
+
# @return [Types::EnaSrdSpecificationRequest]
|
43551
|
+
#
|
43097
43552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
|
43098
43553
|
#
|
43099
43554
|
class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
|
@@ -43116,7 +43571,8 @@ module Aws::EC2
|
|
43116
43571
|
:ipv_4_prefix_count,
|
43117
43572
|
:ipv_6_prefixes,
|
43118
43573
|
:ipv_6_prefix_count,
|
43119
|
-
:primary_ipv_6
|
43574
|
+
:primary_ipv_6,
|
43575
|
+
:ena_srd_specification)
|
43120
43576
|
SENSITIVE = []
|
43121
43577
|
include Aws::Structure
|
43122
43578
|
end
|
@@ -43564,9 +44020,9 @@ module Aws::EC2
|
|
43564
44020
|
# tagged. When you create a launch template, you can specify tags for
|
43565
44021
|
# the following resource types only: `instance` \| `volume` \|
|
43566
44022
|
# `elastic-gpu` \| `network-interface` \| `spot-instances-request`. If
|
43567
|
-
# the instance does include the resource type that you specify,
|
43568
|
-
# instance launch fails. For example, not all instance types
|
43569
|
-
# an Elastic GPU.
|
44023
|
+
# the instance does not include the resource type that you specify,
|
44024
|
+
# the instance launch fails. For example, not all instance types
|
44025
|
+
# include an Elastic GPU.
|
43570
44026
|
#
|
43571
44027
|
# To tag a resource after it has been created, see [CreateTags][1].
|
43572
44028
|
#
|
@@ -47361,7 +47817,7 @@ module Aws::EC2
|
|
47361
47817
|
# @return [Boolean]
|
47362
47818
|
#
|
47363
47819
|
# @!attribute [rw] sse_specification
|
47364
|
-
#
|
47820
|
+
# The options for server side encryption.
|
47365
47821
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47366
47822
|
#
|
47367
47823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyRequest AWS API Documentation
|
@@ -47386,7 +47842,7 @@ module Aws::EC2
|
|
47386
47842
|
# @return [String]
|
47387
47843
|
#
|
47388
47844
|
# @!attribute [rw] sse_specification
|
47389
|
-
#
|
47845
|
+
# The options in use for server side encryption.
|
47390
47846
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
47391
47847
|
#
|
47392
47848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyResult AWS API Documentation
|
@@ -47455,7 +47911,7 @@ module Aws::EC2
|
|
47455
47911
|
end
|
47456
47912
|
|
47457
47913
|
# @!attribute [rw] verified_access_endpoint
|
47458
|
-
#
|
47914
|
+
# Details about the Verified Access endpoint.
|
47459
47915
|
# @return [Types::VerifiedAccessEndpoint]
|
47460
47916
|
#
|
47461
47917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointResult AWS API Documentation
|
@@ -47499,7 +47955,7 @@ module Aws::EC2
|
|
47499
47955
|
# @return [Boolean]
|
47500
47956
|
#
|
47501
47957
|
# @!attribute [rw] sse_specification
|
47502
|
-
#
|
47958
|
+
# The options for server side encryption.
|
47503
47959
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47504
47960
|
#
|
47505
47961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyRequest AWS API Documentation
|
@@ -47524,7 +47980,7 @@ module Aws::EC2
|
|
47524
47980
|
# @return [String]
|
47525
47981
|
#
|
47526
47982
|
# @!attribute [rw] sse_specification
|
47527
|
-
#
|
47983
|
+
# The options in use for server side encryption.
|
47528
47984
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
47529
47985
|
#
|
47530
47986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyResult AWS API Documentation
|
@@ -47582,7 +48038,7 @@ module Aws::EC2
|
|
47582
48038
|
end
|
47583
48039
|
|
47584
48040
|
# @!attribute [rw] verified_access_group
|
47585
|
-
# Details
|
48041
|
+
# Details about the Verified Access group.
|
47586
48042
|
# @return [Types::VerifiedAccessGroup]
|
47587
48043
|
#
|
47588
48044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupResult AWS API Documentation
|
@@ -47684,7 +48140,7 @@ module Aws::EC2
|
|
47684
48140
|
end
|
47685
48141
|
|
47686
48142
|
# @!attribute [rw] verified_access_instance
|
47687
|
-
#
|
48143
|
+
# Details about the Verified Access instance.
|
47688
48144
|
# @return [Types::VerifiedAccessInstance]
|
47689
48145
|
#
|
47690
48146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstanceResult AWS API Documentation
|
@@ -47775,7 +48231,7 @@ module Aws::EC2
|
|
47775
48231
|
# @return [String]
|
47776
48232
|
#
|
47777
48233
|
# @!attribute [rw] sse_specification
|
47778
|
-
#
|
48234
|
+
# The options for server side encryption.
|
47779
48235
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47780
48236
|
#
|
47781
48237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderRequest AWS API Documentation
|
@@ -47792,7 +48248,7 @@ module Aws::EC2
|
|
47792
48248
|
end
|
47793
48249
|
|
47794
48250
|
# @!attribute [rw] verified_access_trust_provider
|
47795
|
-
#
|
48251
|
+
# Details about the Verified Access trust provider.
|
47796
48252
|
# @return [Types::VerifiedAccessTrustProvider]
|
47797
48253
|
#
|
47798
48254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -48556,7 +49012,9 @@ module Aws::EC2
|
|
48556
49012
|
# @return [Boolean]
|
48557
49013
|
#
|
48558
49014
|
# @!attribute [rw] skip_tunnel_replacement
|
48559
|
-
# Choose whether or not to trigger immediate tunnel replacement.
|
49015
|
+
# Choose whether or not to trigger immediate tunnel replacement. This
|
49016
|
+
# is only applicable when turning on or off
|
49017
|
+
# `EnableTunnelLifecycleControl`.
|
48560
49018
|
#
|
48561
49019
|
# Valid values: `True` \| `False`
|
48562
49020
|
# @return [Boolean]
|
@@ -48674,11 +49132,13 @@ module Aws::EC2
|
|
48674
49132
|
# @return [Integer]
|
48675
49133
|
#
|
48676
49134
|
# @!attribute [rw] dpd_timeout_seconds
|
48677
|
-
# The number of seconds after which a DPD timeout occurs.
|
49135
|
+
# The number of seconds after which a DPD timeout occurs. A DPD
|
49136
|
+
# timeout of 40 seconds means that the VPN endpoint will consider the
|
49137
|
+
# peer dead 30 seconds after the first failed keep-alive.
|
48678
49138
|
#
|
48679
49139
|
# Constraints: A value greater than or equal to 30.
|
48680
49140
|
#
|
48681
|
-
# Default: `
|
49141
|
+
# Default: `40`
|
48682
49142
|
# @return [Integer]
|
48683
49143
|
#
|
48684
49144
|
# @!attribute [rw] dpd_timeout_action
|
@@ -53824,8 +54284,7 @@ module Aws::EC2
|
|
53824
54284
|
#
|
53825
54285
|
# @!attribute [rw] security_group_ids
|
53826
54286
|
# One or more security group IDs. You can create a security group
|
53827
|
-
# using [CreateSecurityGroup][1].
|
53828
|
-
# group ID and security name in the same request.
|
54287
|
+
# using [CreateSecurityGroup][1].
|
53829
54288
|
#
|
53830
54289
|
#
|
53831
54290
|
#
|
@@ -53834,8 +54293,7 @@ module Aws::EC2
|
|
53834
54293
|
#
|
53835
54294
|
# @!attribute [rw] security_groups
|
53836
54295
|
# One or more security group names. For a nondefault VPC, you must use
|
53837
|
-
# security group IDs instead.
|
53838
|
-
# ID and security name in the same request.
|
54296
|
+
# security group IDs instead.
|
53839
54297
|
# @return [Array<String>]
|
53840
54298
|
#
|
53841
54299
|
# @!attribute [rw] instance_market_options
|
@@ -64025,7 +64483,7 @@ module Aws::EC2
|
|
64025
64483
|
# @return [Array<Types::Tag>]
|
64026
64484
|
#
|
64027
64485
|
# @!attribute [rw] sse_specification
|
64028
|
-
#
|
64486
|
+
# The options in use for server side encryption.
|
64029
64487
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64030
64488
|
#
|
64031
64489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessEndpoint AWS API Documentation
|
@@ -64166,7 +64624,7 @@ module Aws::EC2
|
|
64166
64624
|
# @return [Array<Types::Tag>]
|
64167
64625
|
#
|
64168
64626
|
# @!attribute [rw] sse_specification
|
64169
|
-
#
|
64627
|
+
# The options in use for server side encryption.
|
64170
64628
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64171
64629
|
#
|
64172
64630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessGroup AWS API Documentation
|
@@ -64213,7 +64671,7 @@ module Aws::EC2
|
|
64213
64671
|
# @return [Array<Types::Tag>]
|
64214
64672
|
#
|
64215
64673
|
# @!attribute [rw] fips_enabled
|
64216
|
-
#
|
64674
|
+
# Indicates whether support for Federal Information Processing
|
64217
64675
|
# Standards (FIPS) is enabled on the instance.
|
64218
64676
|
# @return [Boolean]
|
64219
64677
|
#
|
@@ -64371,13 +64829,14 @@ module Aws::EC2
|
|
64371
64829
|
# @return [Types::VerifiedAccessLogKinesisDataFirehoseDestinationOptions]
|
64372
64830
|
#
|
64373
64831
|
# @!attribute [rw] log_version
|
64374
|
-
# The logging version
|
64832
|
+
# The logging version.
|
64375
64833
|
#
|
64376
64834
|
# Valid values: `ocsf-0.1` \| `ocsf-1.0.0-rc.2`
|
64377
64835
|
# @return [String]
|
64378
64836
|
#
|
64379
64837
|
# @!attribute [rw] include_trust_context
|
64380
|
-
#
|
64838
|
+
# Indicates whether to include trust data sent by trust providers in
|
64839
|
+
# the logs.
|
64381
64840
|
# @return [Boolean]
|
64382
64841
|
#
|
64383
64842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessLogOptions AWS API Documentation
|
@@ -64471,11 +64930,11 @@ module Aws::EC2
|
|
64471
64930
|
# @return [Types::VerifiedAccessLogKinesisDataFirehoseDestination]
|
64472
64931
|
#
|
64473
64932
|
# @!attribute [rw] log_version
|
64474
|
-
#
|
64933
|
+
# The log version.
|
64475
64934
|
# @return [String]
|
64476
64935
|
#
|
64477
64936
|
# @!attribute [rw] include_trust_context
|
64478
|
-
#
|
64937
|
+
# Indicates whether trust data is included in the logs.
|
64479
64938
|
# @return [Boolean]
|
64480
64939
|
#
|
64481
64940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessLogs AWS API Documentation
|
@@ -64515,17 +64974,17 @@ module Aws::EC2
|
|
64515
64974
|
include Aws::Structure
|
64516
64975
|
end
|
64517
64976
|
|
64518
|
-
#
|
64977
|
+
# The options in use for server side encryption.
|
64519
64978
|
#
|
64520
64979
|
# @!attribute [rw] customer_managed_key_enabled
|
64521
|
-
#
|
64522
|
-
# encryption.
|
64980
|
+
# Indicates whether customer managed KMS keys are in use for server
|
64981
|
+
# side encryption.
|
64523
64982
|
#
|
64524
64983
|
# Valid values: `True` \| `False`
|
64525
64984
|
# @return [Boolean]
|
64526
64985
|
#
|
64527
64986
|
# @!attribute [rw] kms_key_arn
|
64528
|
-
#
|
64987
|
+
# The ARN of the KMS key.
|
64529
64988
|
# @return [String]
|
64530
64989
|
#
|
64531
64990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessSseSpecificationResponse AWS API Documentation
|
@@ -64586,7 +65045,7 @@ module Aws::EC2
|
|
64586
65045
|
# @return [Array<Types::Tag>]
|
64587
65046
|
#
|
64588
65047
|
# @!attribute [rw] sse_specification
|
64589
|
-
#
|
65048
|
+
# The options in use for server side encryption.
|
64590
65049
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64591
65050
|
#
|
64592
65051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessTrustProvider AWS API Documentation
|
@@ -64649,7 +65108,9 @@ module Aws::EC2
|
|
64649
65108
|
# @return [Integer]
|
64650
65109
|
#
|
64651
65110
|
# @!attribute [rw] last_status_change
|
64652
|
-
# The date and time of the last change in status.
|
65111
|
+
# The date and time of the last change in status. This field is
|
65112
|
+
# updated when changes in IKE (Phase 1), IPSec (Phase 2), or BGP
|
65113
|
+
# status are detected.
|
64653
65114
|
# @return [Time]
|
64654
65115
|
#
|
64655
65116
|
# @!attribute [rw] outside_ip_address
|