aws-sdk-ec2 1.418.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +270 -81
- data/lib/aws-sdk-ec2/client_api.rb +83 -2
- data/lib/aws-sdk-ec2/endpoints.rb +14 -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 +2 -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 +483 -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
|
@@ -29749,8 +29867,30 @@ module Aws::EC2
|
|
29749
29867
|
include Aws::Structure
|
29750
29868
|
end
|
29751
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
|
+
|
29752
29892
|
# ENA Express is compatible with both TCP and UDP transport protocols.
|
29753
|
-
# When it
|
29893
|
+
# When it's enabled, TCP traffic automatically uses it. However, some
|
29754
29894
|
# UDP-based applications are designed to handle network packets that are
|
29755
29895
|
# out of order, without a need for retransmission, such as live video
|
29756
29896
|
# broadcasting or other near-real-time applications. For UDP traffic,
|
@@ -29758,8 +29898,8 @@ module Aws::EC2
|
|
29758
29898
|
# environment needs.
|
29759
29899
|
#
|
29760
29900
|
# @!attribute [rw] ena_srd_udp_enabled
|
29761
|
-
# Indicates whether UDP traffic
|
29762
|
-
# 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.
|
29763
29903
|
# @return [Boolean]
|
29764
29904
|
#
|
29765
29905
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnaSrdUdpSpecification AWS API Documentation
|
@@ -29770,6 +29910,24 @@ module Aws::EC2
|
|
29770
29910
|
include Aws::Structure
|
29771
29911
|
end
|
29772
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
|
+
|
29773
29931
|
# @!attribute [rw] allocation_id
|
29774
29932
|
# The allocation ID of an Elastic IP address.
|
29775
29933
|
# @return [String]
|
@@ -29885,19 +30043,19 @@ module Aws::EC2
|
|
29885
30043
|
end
|
29886
30044
|
|
29887
30045
|
# @!attribute [rw] image_id
|
29888
|
-
#
|
30046
|
+
# Specify the ID of the image for which to enable Windows fast launch.
|
29889
30047
|
# @return [String]
|
29890
30048
|
#
|
29891
30049
|
# @!attribute [rw] resource_type
|
29892
|
-
# The type of resource to use for pre-provisioning the
|
29893
|
-
#
|
30050
|
+
# The type of resource to use for pre-provisioning the AMI for Windows
|
30051
|
+
# fast launch. Supported values include: `snapshot`, which is the
|
29894
30052
|
# default value.
|
29895
30053
|
# @return [String]
|
29896
30054
|
#
|
29897
30055
|
# @!attribute [rw] snapshot_configuration
|
29898
30056
|
# Configuration settings for creating and managing the snapshots that
|
29899
|
-
# are used for pre-provisioning the
|
29900
|
-
#
|
30057
|
+
# are used for pre-provisioning the AMI for Windows fast launch. The
|
30058
|
+
# associated `ResourceType` must be `snapshot`.
|
29901
30059
|
# @return [Types::FastLaunchSnapshotConfigurationRequest]
|
29902
30060
|
#
|
29903
30061
|
# @!attribute [rw] launch_template
|
@@ -29908,8 +30066,8 @@ module Aws::EC2
|
|
29908
30066
|
#
|
29909
30067
|
# @!attribute [rw] max_parallel_launches
|
29910
30068
|
# The maximum number of instances that Amazon EC2 can launch at the
|
29911
|
-
# same time to create pre-provisioned snapshots for Windows
|
29912
|
-
#
|
30069
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
30070
|
+
# launch. Value must be `6` or greater.
|
29913
30071
|
# @return [Integer]
|
29914
30072
|
#
|
29915
30073
|
# @!attribute [rw] dry_run
|
@@ -29933,13 +30091,13 @@ module Aws::EC2
|
|
29933
30091
|
end
|
29934
30092
|
|
29935
30093
|
# @!attribute [rw] image_id
|
29936
|
-
# The image ID that identifies the
|
29937
|
-
#
|
30094
|
+
# The image ID that identifies the AMI for which Windows fast launch
|
30095
|
+
# was enabled.
|
29938
30096
|
# @return [String]
|
29939
30097
|
#
|
29940
30098
|
# @!attribute [rw] resource_type
|
29941
|
-
# The type of resource that was defined for pre-provisioning the
|
29942
|
-
# Windows
|
30099
|
+
# The type of resource that was defined for pre-provisioning the AMI
|
30100
|
+
# for Windows fast launch.
|
29943
30101
|
# @return [String]
|
29944
30102
|
#
|
29945
30103
|
# @!attribute [rw] snapshot_configuration
|
@@ -29956,27 +30114,25 @@ module Aws::EC2
|
|
29956
30114
|
#
|
29957
30115
|
# @!attribute [rw] max_parallel_launches
|
29958
30116
|
# The maximum number of instances that Amazon EC2 can launch at the
|
29959
|
-
# same time to create pre-provisioned snapshots for Windows
|
29960
|
-
#
|
30117
|
+
# same time to create pre-provisioned snapshots for Windows fast
|
30118
|
+
# launch.
|
29961
30119
|
# @return [Integer]
|
29962
30120
|
#
|
29963
30121
|
# @!attribute [rw] owner_id
|
29964
|
-
# The owner ID for the
|
29965
|
-
# enabled.
|
30122
|
+
# The owner ID for the AMI for which Windows fast launch was enabled.
|
29966
30123
|
# @return [String]
|
29967
30124
|
#
|
29968
30125
|
# @!attribute [rw] state
|
29969
|
-
# The current state of
|
30126
|
+
# The current state of Windows fast launch for the specified AMI.
|
29970
30127
|
# @return [String]
|
29971
30128
|
#
|
29972
30129
|
# @!attribute [rw] state_transition_reason
|
29973
|
-
# The reason that the state changed for
|
29974
|
-
#
|
30130
|
+
# The reason that the state changed for Windows fast launch for the
|
30131
|
+
# AMI.
|
29975
30132
|
# @return [String]
|
29976
30133
|
#
|
29977
30134
|
# @!attribute [rw] state_transition_time
|
29978
|
-
# The time that the state changed for
|
29979
|
-
# AMI.
|
30135
|
+
# The time that the state changed for Windows fast launch for the AMI.
|
29980
30136
|
# @return [Time]
|
29981
30137
|
#
|
29982
30138
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableFastLaunchResult AWS API Documentation
|
@@ -31525,7 +31681,7 @@ module Aws::EC2
|
|
31525
31681
|
include Aws::Structure
|
31526
31682
|
end
|
31527
31683
|
|
31528
|
-
# Request to create a launch template for a fast
|
31684
|
+
# Request to create a launch template for a Windows fast launch enabled
|
31529
31685
|
# AMI.
|
31530
31686
|
#
|
31531
31687
|
# <note markdown="1"> Note - You can specify either the `LaunchTemplateName` or the
|
@@ -31534,18 +31690,18 @@ module Aws::EC2
|
|
31534
31690
|
# </note>
|
31535
31691
|
#
|
31536
31692
|
# @!attribute [rw] launch_template_id
|
31537
|
-
#
|
31538
|
-
# Windows
|
31693
|
+
# Specify the ID of the launch template that the AMI should use for
|
31694
|
+
# Windows fast launch.
|
31539
31695
|
# @return [String]
|
31540
31696
|
#
|
31541
31697
|
# @!attribute [rw] launch_template_name
|
31542
|
-
#
|
31543
|
-
# Windows
|
31698
|
+
# Specify the name of the launch template that the AMI should use for
|
31699
|
+
# Windows fast launch.
|
31544
31700
|
# @return [String]
|
31545
31701
|
#
|
31546
31702
|
# @!attribute [rw] version
|
31547
|
-
#
|
31548
|
-
# Windows
|
31703
|
+
# Specify the version of the launch template that the AMI should use
|
31704
|
+
# for Windows fast launch.
|
31549
31705
|
# @return [String]
|
31550
31706
|
#
|
31551
31707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchLaunchTemplateSpecificationRequest AWS API Documentation
|
@@ -31558,22 +31714,22 @@ module Aws::EC2
|
|
31558
31714
|
include Aws::Structure
|
31559
31715
|
end
|
31560
31716
|
|
31561
|
-
# Identifies the launch template
|
31562
|
-
#
|
31717
|
+
# Identifies the launch template that the AMI uses for Windows fast
|
31718
|
+
# launch.
|
31563
31719
|
#
|
31564
31720
|
# @!attribute [rw] launch_template_id
|
31565
|
-
# The ID of the launch template
|
31566
|
-
#
|
31721
|
+
# The ID of the launch template that the AMI uses for Windows fast
|
31722
|
+
# launch.
|
31567
31723
|
# @return [String]
|
31568
31724
|
#
|
31569
31725
|
# @!attribute [rw] launch_template_name
|
31570
|
-
# The name of the launch template
|
31571
|
-
#
|
31726
|
+
# The name of the launch template that the AMI uses for Windows fast
|
31727
|
+
# launch.
|
31572
31728
|
# @return [String]
|
31573
31729
|
#
|
31574
31730
|
# @!attribute [rw] version
|
31575
|
-
# The version of the launch template
|
31576
|
-
#
|
31731
|
+
# The version of the launch template that the AMI uses for Windows
|
31732
|
+
# fast launch.
|
31577
31733
|
# @return [String]
|
31578
31734
|
#
|
31579
31735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchLaunchTemplateSpecificationResponse AWS API Documentation
|
@@ -31587,11 +31743,11 @@ module Aws::EC2
|
|
31587
31743
|
end
|
31588
31744
|
|
31589
31745
|
# Configuration settings for creating and managing pre-provisioned
|
31590
|
-
# snapshots for a fast
|
31746
|
+
# snapshots for a Windows fast launch enabled AMI.
|
31591
31747
|
#
|
31592
31748
|
# @!attribute [rw] target_resource_count
|
31593
31749
|
# The number of pre-provisioned snapshots to keep on hand for a
|
31594
|
-
# fast
|
31750
|
+
# Windows fast launch enabled AMI.
|
31595
31751
|
# @return [Integer]
|
31596
31752
|
#
|
31597
31753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchSnapshotConfigurationRequest AWS API Documentation
|
@@ -31603,11 +31759,11 @@ module Aws::EC2
|
|
31603
31759
|
end
|
31604
31760
|
|
31605
31761
|
# Configuration settings for creating and managing pre-provisioned
|
31606
|
-
# snapshots for a fast
|
31762
|
+
# snapshots for a Windows fast launch enabled Windows AMI.
|
31607
31763
|
#
|
31608
31764
|
# @!attribute [rw] target_resource_count
|
31609
31765
|
# The number of pre-provisioned snapshots requested to keep on hand
|
31610
|
-
# for a fast
|
31766
|
+
# for a Windows fast launch enabled AMI.
|
31611
31767
|
# @return [Integer]
|
31612
31768
|
#
|
31613
31769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FastLaunchSnapshotConfigurationResponse AWS API Documentation
|
@@ -33136,12 +33292,18 @@ module Aws::EC2
|
|
33136
33292
|
# The ID of the local gateway route table.
|
33137
33293
|
# @return [String]
|
33138
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
|
+
#
|
33139
33300
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetCoipPoolUsageResult AWS API Documentation
|
33140
33301
|
#
|
33141
33302
|
class GetCoipPoolUsageResult < Struct.new(
|
33142
33303
|
:coip_pool_id,
|
33143
33304
|
:coip_address_usages,
|
33144
|
-
:local_gateway_route_table_id
|
33305
|
+
:local_gateway_route_table_id,
|
33306
|
+
:next_token)
|
33145
33307
|
SENSITIVE = []
|
33146
33308
|
include Aws::Structure
|
33147
33309
|
end
|
@@ -37822,6 +37984,58 @@ module Aws::EC2
|
|
37822
37984
|
include Aws::Structure
|
37823
37985
|
end
|
37824
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
|
+
|
37825
38039
|
# Describes an instance attribute.
|
37826
38040
|
#
|
37827
38041
|
# @!attribute [rw] groups
|
@@ -38776,6 +38990,11 @@ module Aws::EC2
|
|
38776
38990
|
# The index of the network card.
|
38777
38991
|
# @return [Integer]
|
38778
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
|
+
#
|
38779
38998
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceAttachment AWS API Documentation
|
38780
38999
|
#
|
38781
39000
|
class InstanceNetworkInterfaceAttachment < Struct.new(
|
@@ -38784,7 +39003,8 @@ module Aws::EC2
|
|
38784
39003
|
:delete_on_termination,
|
38785
39004
|
:device_index,
|
38786
39005
|
:status,
|
38787
|
-
:network_card_index
|
39006
|
+
:network_card_index,
|
39007
|
+
:ena_srd_specification)
|
38788
39008
|
SENSITIVE = []
|
38789
39009
|
include Aws::Structure
|
38790
39010
|
end
|
@@ -38955,6 +39175,11 @@ module Aws::EC2
|
|
38955
39175
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
38956
39176
|
# @return [Boolean]
|
38957
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
|
+
#
|
38958
39183
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterfaceSpecification AWS API Documentation
|
38959
39184
|
#
|
38960
39185
|
class InstanceNetworkInterfaceSpecification < Struct.new(
|
@@ -38977,7 +39202,8 @@ module Aws::EC2
|
|
38977
39202
|
:ipv_4_prefix_count,
|
38978
39203
|
:ipv_6_prefixes,
|
38979
39204
|
:ipv_6_prefix_count,
|
38980
|
-
:primary_ipv_6
|
39205
|
+
:primary_ipv_6,
|
39206
|
+
:ena_srd_specification)
|
38981
39207
|
SENSITIVE = []
|
38982
39208
|
include Aws::Structure
|
38983
39209
|
end
|
@@ -40168,6 +40394,49 @@ module Aws::EC2
|
|
40168
40394
|
include Aws::Structure
|
40169
40395
|
end
|
40170
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
|
+
|
40171
40440
|
# Describes the instance type.
|
40172
40441
|
#
|
40173
40442
|
# @!attribute [rw] instance_type
|
@@ -42602,6 +42871,58 @@ module Aws::EC2
|
|
42602
42871
|
include Aws::Structure
|
42603
42872
|
end
|
42604
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
|
+
|
42605
42926
|
# Indicates whether the instance is enabled for Amazon Web Services
|
42606
42927
|
# Nitro Enclaves.
|
42607
42928
|
#
|
@@ -43064,6 +43385,11 @@ module Aws::EC2
|
|
43064
43385
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43065
43386
|
# @return [Boolean]
|
43066
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
|
+
#
|
43067
43393
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecification AWS API Documentation
|
43068
43394
|
#
|
43069
43395
|
class LaunchTemplateInstanceNetworkInterfaceSpecification < Struct.new(
|
@@ -43086,7 +43412,8 @@ module Aws::EC2
|
|
43086
43412
|
:ipv_4_prefix_count,
|
43087
43413
|
:ipv_6_prefixes,
|
43088
43414
|
:ipv_6_prefix_count,
|
43089
|
-
:primary_ipv_6
|
43415
|
+
:primary_ipv_6,
|
43416
|
+
:ena_srd_specification)
|
43090
43417
|
SENSITIVE = []
|
43091
43418
|
include Aws::Structure
|
43092
43419
|
end
|
@@ -43218,6 +43545,10 @@ module Aws::EC2
|
|
43218
43545
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html
|
43219
43546
|
# @return [Boolean]
|
43220
43547
|
#
|
43548
|
+
# @!attribute [rw] ena_srd_specification
|
43549
|
+
# Configure ENA Express settings for your launch template.
|
43550
|
+
# @return [Types::EnaSrdSpecificationRequest]
|
43551
|
+
#
|
43221
43552
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateInstanceNetworkInterfaceSpecificationRequest AWS API Documentation
|
43222
43553
|
#
|
43223
43554
|
class LaunchTemplateInstanceNetworkInterfaceSpecificationRequest < Struct.new(
|
@@ -43240,7 +43571,8 @@ module Aws::EC2
|
|
43240
43571
|
:ipv_4_prefix_count,
|
43241
43572
|
:ipv_6_prefixes,
|
43242
43573
|
:ipv_6_prefix_count,
|
43243
|
-
:primary_ipv_6
|
43574
|
+
:primary_ipv_6,
|
43575
|
+
:ena_srd_specification)
|
43244
43576
|
SENSITIVE = []
|
43245
43577
|
include Aws::Structure
|
43246
43578
|
end
|
@@ -43688,9 +44020,9 @@ module Aws::EC2
|
|
43688
44020
|
# tagged. When you create a launch template, you can specify tags for
|
43689
44021
|
# the following resource types only: `instance` \| `volume` \|
|
43690
44022
|
# `elastic-gpu` \| `network-interface` \| `spot-instances-request`. If
|
43691
|
-
# the instance does include the resource type that you specify,
|
43692
|
-
# instance launch fails. For example, not all instance types
|
43693
|
-
# 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.
|
43694
44026
|
#
|
43695
44027
|
# To tag a resource after it has been created, see [CreateTags][1].
|
43696
44028
|
#
|
@@ -47485,7 +47817,7 @@ module Aws::EC2
|
|
47485
47817
|
# @return [Boolean]
|
47486
47818
|
#
|
47487
47819
|
# @!attribute [rw] sse_specification
|
47488
|
-
#
|
47820
|
+
# The options for server side encryption.
|
47489
47821
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47490
47822
|
#
|
47491
47823
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyRequest AWS API Documentation
|
@@ -47510,7 +47842,7 @@ module Aws::EC2
|
|
47510
47842
|
# @return [String]
|
47511
47843
|
#
|
47512
47844
|
# @!attribute [rw] sse_specification
|
47513
|
-
#
|
47845
|
+
# The options in use for server side encryption.
|
47514
47846
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
47515
47847
|
#
|
47516
47848
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyResult AWS API Documentation
|
@@ -47579,7 +47911,7 @@ module Aws::EC2
|
|
47579
47911
|
end
|
47580
47912
|
|
47581
47913
|
# @!attribute [rw] verified_access_endpoint
|
47582
|
-
#
|
47914
|
+
# Details about the Verified Access endpoint.
|
47583
47915
|
# @return [Types::VerifiedAccessEndpoint]
|
47584
47916
|
#
|
47585
47917
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointResult AWS API Documentation
|
@@ -47623,7 +47955,7 @@ module Aws::EC2
|
|
47623
47955
|
# @return [Boolean]
|
47624
47956
|
#
|
47625
47957
|
# @!attribute [rw] sse_specification
|
47626
|
-
#
|
47958
|
+
# The options for server side encryption.
|
47627
47959
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47628
47960
|
#
|
47629
47961
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyRequest AWS API Documentation
|
@@ -47648,7 +47980,7 @@ module Aws::EC2
|
|
47648
47980
|
# @return [String]
|
47649
47981
|
#
|
47650
47982
|
# @!attribute [rw] sse_specification
|
47651
|
-
#
|
47983
|
+
# The options in use for server side encryption.
|
47652
47984
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
47653
47985
|
#
|
47654
47986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyResult AWS API Documentation
|
@@ -47706,7 +48038,7 @@ module Aws::EC2
|
|
47706
48038
|
end
|
47707
48039
|
|
47708
48040
|
# @!attribute [rw] verified_access_group
|
47709
|
-
# Details
|
48041
|
+
# Details about the Verified Access group.
|
47710
48042
|
# @return [Types::VerifiedAccessGroup]
|
47711
48043
|
#
|
47712
48044
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupResult AWS API Documentation
|
@@ -47808,7 +48140,7 @@ module Aws::EC2
|
|
47808
48140
|
end
|
47809
48141
|
|
47810
48142
|
# @!attribute [rw] verified_access_instance
|
47811
|
-
#
|
48143
|
+
# Details about the Verified Access instance.
|
47812
48144
|
# @return [Types::VerifiedAccessInstance]
|
47813
48145
|
#
|
47814
48146
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstanceResult AWS API Documentation
|
@@ -47899,7 +48231,7 @@ module Aws::EC2
|
|
47899
48231
|
# @return [String]
|
47900
48232
|
#
|
47901
48233
|
# @!attribute [rw] sse_specification
|
47902
|
-
#
|
48234
|
+
# The options for server side encryption.
|
47903
48235
|
# @return [Types::VerifiedAccessSseSpecificationRequest]
|
47904
48236
|
#
|
47905
48237
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderRequest AWS API Documentation
|
@@ -47916,7 +48248,7 @@ module Aws::EC2
|
|
47916
48248
|
end
|
47917
48249
|
|
47918
48250
|
# @!attribute [rw] verified_access_trust_provider
|
47919
|
-
#
|
48251
|
+
# Details about the Verified Access trust provider.
|
47920
48252
|
# @return [Types::VerifiedAccessTrustProvider]
|
47921
48253
|
#
|
47922
48254
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -48680,7 +49012,9 @@ module Aws::EC2
|
|
48680
49012
|
# @return [Boolean]
|
48681
49013
|
#
|
48682
49014
|
# @!attribute [rw] skip_tunnel_replacement
|
48683
|
-
# 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`.
|
48684
49018
|
#
|
48685
49019
|
# Valid values: `True` \| `False`
|
48686
49020
|
# @return [Boolean]
|
@@ -48798,11 +49132,13 @@ module Aws::EC2
|
|
48798
49132
|
# @return [Integer]
|
48799
49133
|
#
|
48800
49134
|
# @!attribute [rw] dpd_timeout_seconds
|
48801
|
-
# 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.
|
48802
49138
|
#
|
48803
49139
|
# Constraints: A value greater than or equal to 30.
|
48804
49140
|
#
|
48805
|
-
# Default: `
|
49141
|
+
# Default: `40`
|
48806
49142
|
# @return [Integer]
|
48807
49143
|
#
|
48808
49144
|
# @!attribute [rw] dpd_timeout_action
|
@@ -53948,8 +54284,7 @@ module Aws::EC2
|
|
53948
54284
|
#
|
53949
54285
|
# @!attribute [rw] security_group_ids
|
53950
54286
|
# One or more security group IDs. You can create a security group
|
53951
|
-
# using [CreateSecurityGroup][1].
|
53952
|
-
# group ID and security name in the same request.
|
54287
|
+
# using [CreateSecurityGroup][1].
|
53953
54288
|
#
|
53954
54289
|
#
|
53955
54290
|
#
|
@@ -53958,8 +54293,7 @@ module Aws::EC2
|
|
53958
54293
|
#
|
53959
54294
|
# @!attribute [rw] security_groups
|
53960
54295
|
# One or more security group names. For a nondefault VPC, you must use
|
53961
|
-
# security group IDs instead.
|
53962
|
-
# ID and security name in the same request.
|
54296
|
+
# security group IDs instead.
|
53963
54297
|
# @return [Array<String>]
|
53964
54298
|
#
|
53965
54299
|
# @!attribute [rw] instance_market_options
|
@@ -64149,7 +64483,7 @@ module Aws::EC2
|
|
64149
64483
|
# @return [Array<Types::Tag>]
|
64150
64484
|
#
|
64151
64485
|
# @!attribute [rw] sse_specification
|
64152
|
-
#
|
64486
|
+
# The options in use for server side encryption.
|
64153
64487
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64154
64488
|
#
|
64155
64489
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessEndpoint AWS API Documentation
|
@@ -64290,7 +64624,7 @@ module Aws::EC2
|
|
64290
64624
|
# @return [Array<Types::Tag>]
|
64291
64625
|
#
|
64292
64626
|
# @!attribute [rw] sse_specification
|
64293
|
-
#
|
64627
|
+
# The options in use for server side encryption.
|
64294
64628
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64295
64629
|
#
|
64296
64630
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessGroup AWS API Documentation
|
@@ -64337,7 +64671,7 @@ module Aws::EC2
|
|
64337
64671
|
# @return [Array<Types::Tag>]
|
64338
64672
|
#
|
64339
64673
|
# @!attribute [rw] fips_enabled
|
64340
|
-
#
|
64674
|
+
# Indicates whether support for Federal Information Processing
|
64341
64675
|
# Standards (FIPS) is enabled on the instance.
|
64342
64676
|
# @return [Boolean]
|
64343
64677
|
#
|
@@ -64495,13 +64829,14 @@ module Aws::EC2
|
|
64495
64829
|
# @return [Types::VerifiedAccessLogKinesisDataFirehoseDestinationOptions]
|
64496
64830
|
#
|
64497
64831
|
# @!attribute [rw] log_version
|
64498
|
-
# The logging version
|
64832
|
+
# The logging version.
|
64499
64833
|
#
|
64500
64834
|
# Valid values: `ocsf-0.1` \| `ocsf-1.0.0-rc.2`
|
64501
64835
|
# @return [String]
|
64502
64836
|
#
|
64503
64837
|
# @!attribute [rw] include_trust_context
|
64504
|
-
#
|
64838
|
+
# Indicates whether to include trust data sent by trust providers in
|
64839
|
+
# the logs.
|
64505
64840
|
# @return [Boolean]
|
64506
64841
|
#
|
64507
64842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessLogOptions AWS API Documentation
|
@@ -64595,11 +64930,11 @@ module Aws::EC2
|
|
64595
64930
|
# @return [Types::VerifiedAccessLogKinesisDataFirehoseDestination]
|
64596
64931
|
#
|
64597
64932
|
# @!attribute [rw] log_version
|
64598
|
-
#
|
64933
|
+
# The log version.
|
64599
64934
|
# @return [String]
|
64600
64935
|
#
|
64601
64936
|
# @!attribute [rw] include_trust_context
|
64602
|
-
#
|
64937
|
+
# Indicates whether trust data is included in the logs.
|
64603
64938
|
# @return [Boolean]
|
64604
64939
|
#
|
64605
64940
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessLogs AWS API Documentation
|
@@ -64639,17 +64974,17 @@ module Aws::EC2
|
|
64639
64974
|
include Aws::Structure
|
64640
64975
|
end
|
64641
64976
|
|
64642
|
-
#
|
64977
|
+
# The options in use for server side encryption.
|
64643
64978
|
#
|
64644
64979
|
# @!attribute [rw] customer_managed_key_enabled
|
64645
|
-
#
|
64646
|
-
# encryption.
|
64980
|
+
# Indicates whether customer managed KMS keys are in use for server
|
64981
|
+
# side encryption.
|
64647
64982
|
#
|
64648
64983
|
# Valid values: `True` \| `False`
|
64649
64984
|
# @return [Boolean]
|
64650
64985
|
#
|
64651
64986
|
# @!attribute [rw] kms_key_arn
|
64652
|
-
#
|
64987
|
+
# The ARN of the KMS key.
|
64653
64988
|
# @return [String]
|
64654
64989
|
#
|
64655
64990
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessSseSpecificationResponse AWS API Documentation
|
@@ -64710,7 +65045,7 @@ module Aws::EC2
|
|
64710
65045
|
# @return [Array<Types::Tag>]
|
64711
65046
|
#
|
64712
65047
|
# @!attribute [rw] sse_specification
|
64713
|
-
#
|
65048
|
+
# The options in use for server side encryption.
|
64714
65049
|
# @return [Types::VerifiedAccessSseSpecificationResponse]
|
64715
65050
|
#
|
64716
65051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessTrustProvider AWS API Documentation
|
@@ -64773,7 +65108,9 @@ module Aws::EC2
|
|
64773
65108
|
# @return [Integer]
|
64774
65109
|
#
|
64775
65110
|
# @!attribute [rw] last_status_change
|
64776
|
-
# 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.
|
64777
65114
|
# @return [Time]
|
64778
65115
|
#
|
64779
65116
|
# @!attribute [rw] outside_ip_address
|