@aws-sdk/client-ec2 3.420.0 → 3.422.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.
- package/README.md +7 -7
- package/dist-cjs/protocols/Aws_ec2.js +77 -0
- package/dist-es/protocols/Aws_ec2.js +77 -0
- package/dist-types/commands/AttachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/CreatePlacementGroupCommand.d.ts +2 -1
- package/dist-types/commands/CreateVerifiedAccessEndpointCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessGroupCommand.d.ts +8 -0
- package/dist-types/commands/CreateVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/commands/DeletePublicIpv4PoolCommand.d.ts +2 -1
- package/dist-types/commands/DeleteQueuedReservedInstancesCommand.d.ts +1 -2
- package/dist-types/commands/DeleteVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVerifiedAccessGroupsCommand.d.ts +5 -1
- package/dist-types/commands/DescribeVerifiedAccessTrustProvidersCommand.d.ts +4 -0
- package/dist-types/commands/DetachVerifiedAccessTrustProviderCommand.d.ts +4 -0
- package/dist-types/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVerifiedAccessEndpointCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessEndpointPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessGroupCommand.d.ts +4 -0
- package/dist-types/commands/ModifyVerifiedAccessGroupPolicyCommand.d.ts +9 -1
- package/dist-types/commands/ModifyVerifiedAccessTrustProviderCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +32 -15
- package/dist-types/models/models_1.d.ts +13 -11
- package/dist-types/models/models_2.d.ts +72 -32
- package/dist-types/models/models_3.d.ts +27 -63
- package/dist-types/models/models_4.d.ts +65 -55
- package/dist-types/models/models_5.d.ts +54 -33
- package/dist-types/models/models_6.d.ts +71 -47
- package/dist-types/models/models_7.d.ts +44 -1
- package/dist-types/ts3.4/commands/CreatePlacementGroupCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeletePublicIpv4PoolCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DeleteQueuedReservedInstancesCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVerifiedAccessGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetVerifiedAccessGroupPolicyCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +5 -3
- package/dist-types/ts3.4/models/models_1.d.ts +3 -4
- package/dist-types/ts3.4/models/models_2.d.ts +14 -7
- package/dist-types/ts3.4/models/models_3.d.ts +7 -12
- package/dist-types/ts3.4/models/models_4.d.ts +12 -15
- package/dist-types/ts3.4/models/models_5.d.ts +13 -8
- package/dist-types/ts3.4/models/models_6.d.ts +17 -10
- package/dist-types/ts3.4/models/models_7.d.ts +8 -2
- package/package.json +3 -3
|
@@ -32,16 +32,24 @@ export interface ModifyVerifiedAccessGroupPolicyCommandOutput extends ModifyVeri
|
|
|
32
32
|
* const client = new EC2Client(config);
|
|
33
33
|
* const input = { // ModifyVerifiedAccessGroupPolicyRequest
|
|
34
34
|
* VerifiedAccessGroupId: "STRING_VALUE", // required
|
|
35
|
-
* PolicyEnabled: true || false,
|
|
35
|
+
* PolicyEnabled: true || false,
|
|
36
36
|
* PolicyDocument: "STRING_VALUE",
|
|
37
37
|
* ClientToken: "STRING_VALUE",
|
|
38
38
|
* DryRun: true || false,
|
|
39
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
40
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
41
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
42
|
+
* },
|
|
39
43
|
* };
|
|
40
44
|
* const command = new ModifyVerifiedAccessGroupPolicyCommand(input);
|
|
41
45
|
* const response = await client.send(command);
|
|
42
46
|
* // { // ModifyVerifiedAccessGroupPolicyResult
|
|
43
47
|
* // PolicyEnabled: true || false,
|
|
44
48
|
* // PolicyDocument: "STRING_VALUE",
|
|
49
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
50
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
51
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
52
|
+
* // },
|
|
45
53
|
* // };
|
|
46
54
|
*
|
|
47
55
|
* ```
|
|
@@ -44,6 +44,10 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVe
|
|
|
44
44
|
* Description: "STRING_VALUE",
|
|
45
45
|
* DryRun: true || false,
|
|
46
46
|
* ClientToken: "STRING_VALUE",
|
|
47
|
+
* SseSpecification: { // VerifiedAccessSseSpecificationRequest
|
|
48
|
+
* CustomerManagedKeyEnabled: true || false,
|
|
49
|
+
* KmsKeyArn: "STRING_VALUE",
|
|
50
|
+
* },
|
|
47
51
|
* };
|
|
48
52
|
* const command = new ModifyVerifiedAccessTrustProviderCommand(input);
|
|
49
53
|
* const response = await client.send(command);
|
|
@@ -75,6 +79,10 @@ export interface ModifyVerifiedAccessTrustProviderCommandOutput extends ModifyVe
|
|
|
75
79
|
* // Value: "STRING_VALUE",
|
|
76
80
|
* // },
|
|
77
81
|
* // ],
|
|
82
|
+
* // SseSpecification: { // VerifiedAccessSseSpecificationResponse
|
|
83
|
+
* // CustomerManagedKeyEnabled: true || false,
|
|
84
|
+
* // KmsKeyArn: "STRING_VALUE",
|
|
85
|
+
* // },
|
|
78
86
|
* // },
|
|
79
87
|
* // };
|
|
80
88
|
*
|
|
@@ -4988,9 +4988,7 @@ export interface VerifiedAccessInstance {
|
|
|
4988
4988
|
Tags?: Tag[];
|
|
4989
4989
|
/**
|
|
4990
4990
|
* @public
|
|
4991
|
-
* <p>
|
|
4992
|
-
* Describes if support for Federal Information Processing Standards (FIPS) is enabled on the instance.
|
|
4993
|
-
* </p>
|
|
4991
|
+
* <p>Describes whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.</p>
|
|
4994
4992
|
*/
|
|
4995
4993
|
FipsEnabled?: boolean;
|
|
4996
4994
|
}
|
|
@@ -5047,6 +5045,30 @@ export interface OidcOptions {
|
|
|
5047
5045
|
*/
|
|
5048
5046
|
Scope?: string;
|
|
5049
5047
|
}
|
|
5048
|
+
/**
|
|
5049
|
+
* @public
|
|
5050
|
+
* <p>
|
|
5051
|
+
* Describes the options in use for server side encryption.
|
|
5052
|
+
* </p>
|
|
5053
|
+
*/
|
|
5054
|
+
export interface VerifiedAccessSseSpecificationResponse {
|
|
5055
|
+
/**
|
|
5056
|
+
* @public
|
|
5057
|
+
* <p>
|
|
5058
|
+
* Describes the use of customer managed KMS keys for server side encryption.
|
|
5059
|
+
* </p>
|
|
5060
|
+
* <p>Valid values: <code>True</code> | <code>False</code>
|
|
5061
|
+
* </p>
|
|
5062
|
+
*/
|
|
5063
|
+
CustomerManagedKeyEnabled?: boolean;
|
|
5064
|
+
/**
|
|
5065
|
+
* @public
|
|
5066
|
+
* <p>
|
|
5067
|
+
* Describes the ARN of the KMS key.
|
|
5068
|
+
* </p>
|
|
5069
|
+
*/
|
|
5070
|
+
KmsKeyArn?: string;
|
|
5071
|
+
}
|
|
5050
5072
|
/**
|
|
5051
5073
|
* @public
|
|
5052
5074
|
* <p>Describes a Verified Access trust provider.</p>
|
|
@@ -5107,6 +5129,13 @@ export interface VerifiedAccessTrustProvider {
|
|
|
5107
5129
|
* <p>The tags.</p>
|
|
5108
5130
|
*/
|
|
5109
5131
|
Tags?: Tag[];
|
|
5132
|
+
/**
|
|
5133
|
+
* @public
|
|
5134
|
+
* <p>
|
|
5135
|
+
* Describes the options in use for server side encryption.
|
|
5136
|
+
* </p>
|
|
5137
|
+
*/
|
|
5138
|
+
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
5110
5139
|
}
|
|
5111
5140
|
/**
|
|
5112
5141
|
* @public
|
|
@@ -8479,18 +8508,6 @@ export interface FederatedAuthenticationRequest {
|
|
|
8479
8508
|
*/
|
|
8480
8509
|
SelfServiceSAMLProviderArn?: string;
|
|
8481
8510
|
}
|
|
8482
|
-
/**
|
|
8483
|
-
* @public
|
|
8484
|
-
* <p>Information about the client certificate to be used for authentication.</p>
|
|
8485
|
-
*/
|
|
8486
|
-
export interface CertificateAuthenticationRequest {
|
|
8487
|
-
/**
|
|
8488
|
-
* @public
|
|
8489
|
-
* <p>The ARN of the client certificate. The certificate must be signed by a certificate
|
|
8490
|
-
* authority (CA) and it must be provisioned in Certificate Manager (ACM).</p>
|
|
8491
|
-
*/
|
|
8492
|
-
ClientRootCertificateChainArn?: string;
|
|
8493
|
-
}
|
|
8494
8511
|
/**
|
|
8495
8512
|
* @internal
|
|
8496
8513
|
*/
|
|
@@ -1,4 +1,16 @@
|
|
|
1
|
-
import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus,
|
|
1
|
+
import { _InstanceType, AcceleratorCount, AcceleratorCountRequest, AcceleratorManufacturer, AcceleratorName, AcceleratorTotalMemoryMiB, AcceleratorTotalMemoryMiBRequest, AcceleratorType, AccessScopePath, AccessScopePathRequest, AddIpamOperatingRegion, AddPrefixListEntry, AddressFamily, AttachmentStatus, DirectoryServiceAuthenticationRequest, FederatedAuthenticationRequest, InstanceEventWindow, Ipv4PrefixSpecification, NatGatewayAddress, PortRange, Protocol, ResourceType, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, UnsuccessfulItem, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, WeekDay } from "./models_0";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
* <p>Information about the client certificate to be used for authentication.</p>
|
|
5
|
+
*/
|
|
6
|
+
export interface CertificateAuthenticationRequest {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>The ARN of the client certificate. The certificate must be signed by a certificate
|
|
10
|
+
* authority (CA) and it must be provisioned in Certificate Manager (ACM).</p>
|
|
11
|
+
*/
|
|
12
|
+
ClientRootCertificateChainArn?: string;
|
|
13
|
+
}
|
|
2
14
|
/**
|
|
3
15
|
* @public
|
|
4
16
|
* @enum
|
|
@@ -9720,16 +9732,6 @@ export interface PlacementGroup {
|
|
|
9720
9732
|
*/
|
|
9721
9733
|
SpreadLevel?: SpreadLevel | string;
|
|
9722
9734
|
}
|
|
9723
|
-
/**
|
|
9724
|
-
* @public
|
|
9725
|
-
*/
|
|
9726
|
-
export interface CreatePlacementGroupResult {
|
|
9727
|
-
/**
|
|
9728
|
-
* @public
|
|
9729
|
-
* <p>Information about the placement group.</p>
|
|
9730
|
-
*/
|
|
9731
|
-
PlacementGroup?: PlacementGroup;
|
|
9732
|
-
}
|
|
9733
9735
|
/**
|
|
9734
9736
|
* @internal
|
|
9735
9737
|
*/
|
|
@@ -1,5 +1,15 @@
|
|
|
1
|
-
import { ApplianceModeSupportValue, CarrierGateway, CurrencyCodeValues, DeviceTrustProviderType, DnsSupportValue, DynamicRoutingValue, InstanceEventWindowState, Ipv6SupportValue, ReservedInstancesListing, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrustProviderType, UnsuccessfulItem, UserTrustProviderType, VerifiedAccessInstance, VerifiedAccessTrustProvider, VolumeAttachment, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import { ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, Ec2InstanceConnectEndpoint, GatewayType, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, Subnet, Tenancy, VolumeType, Vpc } from "./models_1";
|
|
1
|
+
import { ApplianceModeSupportValue, CarrierGateway, CurrencyCodeValues, DeviceTrustProviderType, DnsSupportValue, DynamicRoutingValue, InstanceEventWindowState, Ipv6SupportValue, ReservedInstancesListing, RouteTableAssociationState, Tag, TagSpecification, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrustProviderType, UnsuccessfulItem, UserTrustProviderType, VerifiedAccessInstance, VerifiedAccessSseSpecificationResponse, VerifiedAccessTrustProvider, VolumeAttachment, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
|
+
import { ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, Ec2InstanceConnectEndpoint, GatewayType, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, PlacementGroup, Subnet, Tenancy, VolumeType, Vpc } from "./models_1";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface CreatePlacementGroupResult {
|
|
7
|
+
/**
|
|
8
|
+
* @public
|
|
9
|
+
* <p>Information about the placement group.</p>
|
|
10
|
+
*/
|
|
11
|
+
PlacementGroup?: PlacementGroup;
|
|
12
|
+
}
|
|
3
13
|
/**
|
|
4
14
|
* @public
|
|
5
15
|
*/
|
|
@@ -3484,6 +3494,30 @@ export interface CreateVerifiedAccessEndpointEniOptions {
|
|
|
3484
3494
|
*/
|
|
3485
3495
|
Port?: number;
|
|
3486
3496
|
}
|
|
3497
|
+
/**
|
|
3498
|
+
* @public
|
|
3499
|
+
* <p>
|
|
3500
|
+
* Verified Access provides server side encryption by default to data at rest using Amazon Web Services-owned KMS keys. You also have the option of using customer managed KMS keys, which can be specified using the options below.
|
|
3501
|
+
* </p>
|
|
3502
|
+
*/
|
|
3503
|
+
export interface VerifiedAccessSseSpecificationRequest {
|
|
3504
|
+
/**
|
|
3505
|
+
* @public
|
|
3506
|
+
* <p>
|
|
3507
|
+
* Enable or disable the use of customer managed KMS keys for server side encryption.
|
|
3508
|
+
* </p>
|
|
3509
|
+
* <p>Valid values: <code>True</code> | <code>False</code>
|
|
3510
|
+
* </p>
|
|
3511
|
+
*/
|
|
3512
|
+
CustomerManagedKeyEnabled?: boolean;
|
|
3513
|
+
/**
|
|
3514
|
+
* @public
|
|
3515
|
+
* <p>
|
|
3516
|
+
* The ARN of the KMS key.
|
|
3517
|
+
* </p>
|
|
3518
|
+
*/
|
|
3519
|
+
KmsKeyArn?: string;
|
|
3520
|
+
}
|
|
3487
3521
|
/**
|
|
3488
3522
|
* @public
|
|
3489
3523
|
*/
|
|
@@ -3566,6 +3600,13 @@ export interface CreateVerifiedAccessEndpointRequest {
|
|
|
3566
3600
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
3567
3601
|
*/
|
|
3568
3602
|
DryRun?: boolean;
|
|
3603
|
+
/**
|
|
3604
|
+
* @public
|
|
3605
|
+
* <p>
|
|
3606
|
+
* Options for server side encryption.
|
|
3607
|
+
* </p>
|
|
3608
|
+
*/
|
|
3609
|
+
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
3569
3610
|
}
|
|
3570
3611
|
/**
|
|
3571
3612
|
* @public
|
|
@@ -3747,6 +3788,13 @@ export interface VerifiedAccessEndpoint {
|
|
|
3747
3788
|
* <p>The tags.</p>
|
|
3748
3789
|
*/
|
|
3749
3790
|
Tags?: Tag[];
|
|
3791
|
+
/**
|
|
3792
|
+
* @public
|
|
3793
|
+
* <p>
|
|
3794
|
+
* Describes the options in use for server side encryption.
|
|
3795
|
+
* </p>
|
|
3796
|
+
*/
|
|
3797
|
+
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
3750
3798
|
}
|
|
3751
3799
|
/**
|
|
3752
3800
|
* @public
|
|
@@ -3795,6 +3843,13 @@ export interface CreateVerifiedAccessGroupRequest {
|
|
|
3795
3843
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
3796
3844
|
*/
|
|
3797
3845
|
DryRun?: boolean;
|
|
3846
|
+
/**
|
|
3847
|
+
* @public
|
|
3848
|
+
* <p>
|
|
3849
|
+
* Options for server side encryption.
|
|
3850
|
+
* </p>
|
|
3851
|
+
*/
|
|
3852
|
+
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
3798
3853
|
}
|
|
3799
3854
|
/**
|
|
3800
3855
|
* @public
|
|
@@ -3846,6 +3901,13 @@ export interface VerifiedAccessGroup {
|
|
|
3846
3901
|
* <p>The tags.</p>
|
|
3847
3902
|
*/
|
|
3848
3903
|
Tags?: Tag[];
|
|
3904
|
+
/**
|
|
3905
|
+
* @public
|
|
3906
|
+
* <p>
|
|
3907
|
+
* Describes the options in use for server side encryption.
|
|
3908
|
+
* </p>
|
|
3909
|
+
*/
|
|
3910
|
+
SseSpecification?: VerifiedAccessSseSpecificationResponse;
|
|
3849
3911
|
}
|
|
3850
3912
|
/**
|
|
3851
3913
|
* @public
|
|
@@ -3886,9 +3948,7 @@ export interface CreateVerifiedAccessInstanceRequest {
|
|
|
3886
3948
|
DryRun?: boolean;
|
|
3887
3949
|
/**
|
|
3888
3950
|
* @public
|
|
3889
|
-
* <p>
|
|
3890
|
-
* Choose to enable or disable support for Federal Information Processing Standards (FIPS) on the instance.
|
|
3891
|
-
* </p>
|
|
3951
|
+
* <p>Enable or disable support for Federal Information Processing Standards (FIPS) on the instance.</p>
|
|
3892
3952
|
*/
|
|
3893
3953
|
FIPSEnabled?: boolean;
|
|
3894
3954
|
}
|
|
@@ -4017,6 +4077,13 @@ export interface CreateVerifiedAccessTrustProviderRequest {
|
|
|
4017
4077
|
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
4018
4078
|
*/
|
|
4019
4079
|
DryRun?: boolean;
|
|
4080
|
+
/**
|
|
4081
|
+
* @public
|
|
4082
|
+
* <p>
|
|
4083
|
+
* Options for server side encryption.
|
|
4084
|
+
* </p>
|
|
4085
|
+
*/
|
|
4086
|
+
SseSpecification?: VerifiedAccessSseSpecificationRequest;
|
|
4020
4087
|
}
|
|
4021
4088
|
/**
|
|
4022
4089
|
* @public
|
|
@@ -7540,33 +7607,6 @@ export interface DeletePublicIpv4PoolRequest {
|
|
|
7540
7607
|
*/
|
|
7541
7608
|
PoolId: string | undefined;
|
|
7542
7609
|
}
|
|
7543
|
-
/**
|
|
7544
|
-
* @public
|
|
7545
|
-
*/
|
|
7546
|
-
export interface DeletePublicIpv4PoolResult {
|
|
7547
|
-
/**
|
|
7548
|
-
* @public
|
|
7549
|
-
* <p>Information about the result of deleting the public IPv4 pool.</p>
|
|
7550
|
-
*/
|
|
7551
|
-
ReturnValue?: boolean;
|
|
7552
|
-
}
|
|
7553
|
-
/**
|
|
7554
|
-
* @public
|
|
7555
|
-
*/
|
|
7556
|
-
export interface DeleteQueuedReservedInstancesRequest {
|
|
7557
|
-
/**
|
|
7558
|
-
* @public
|
|
7559
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7560
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7561
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7562
|
-
*/
|
|
7563
|
-
DryRun?: boolean;
|
|
7564
|
-
/**
|
|
7565
|
-
* @public
|
|
7566
|
-
* <p>The IDs of the Reserved Instances.</p>
|
|
7567
|
-
*/
|
|
7568
|
-
ReservedInstancesIds: string[] | undefined;
|
|
7569
|
-
}
|
|
7570
7610
|
/**
|
|
7571
7611
|
* @internal
|
|
7572
7612
|
*/
|
|
@@ -1,6 +1,33 @@
|
|
|
1
1
|
import { _InstanceType, AccountAttribute, AccountAttributeName, ActiveInstance, Address, AddressAttribute, AddressAttributeName, AddressTransfer, AllocationState, AllowsMultipleInstanceTypes, AssociationStatus, AttachmentStatus, AutoPlacement, BundleTask, ByoipCidr, CapacityReservation, CapacityReservationFleetState, CarrierGateway, ClientVpnAuthorizationRuleStatus, CurrencyCodeValues, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, HostMaintenance, HostRecovery, IamInstanceProfileAssociation, InstanceEventWindow, Tag, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
2
|
import { AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, ClientVpnAuthenticationType, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, DefaultTargetCapacityType, DestinationFileFormat, DhcpOptions, DiskImageFormat, Ec2InstanceConnectEndpoint, EgressOnlyInternetGateway, ExportTask, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, GroupIdentifier, InstanceLifecycle, LaunchTemplateAndOverridesResponse, LogDestinationType, PlatformValues, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, StateReason, TargetCapacityUnitType, TrafficType, TransportProtocol } from "./models_1";
|
|
3
3
|
import { FleetStateCode, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DeletePublicIpv4PoolResult {
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
* <p>Information about the result of deleting the public IPv4 pool.</p>
|
|
11
|
+
*/
|
|
12
|
+
ReturnValue?: boolean;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @public
|
|
16
|
+
*/
|
|
17
|
+
export interface DeleteQueuedReservedInstancesRequest {
|
|
18
|
+
/**
|
|
19
|
+
* @public
|
|
20
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
21
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
22
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
23
|
+
*/
|
|
24
|
+
DryRun?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
* <p>The IDs of the Reserved Instances.</p>
|
|
28
|
+
*/
|
|
29
|
+
ReservedInstancesIds: string[] | undefined;
|
|
30
|
+
}
|
|
4
31
|
/**
|
|
5
32
|
* @public
|
|
6
33
|
* @enum
|
|
@@ -9090,69 +9117,6 @@ export declare const InstanceBootModeValues: {
|
|
|
9090
9117
|
* @public
|
|
9091
9118
|
*/
|
|
9092
9119
|
export type InstanceBootModeValues = (typeof InstanceBootModeValues)[keyof typeof InstanceBootModeValues];
|
|
9093
|
-
/**
|
|
9094
|
-
* @public
|
|
9095
|
-
* <p>Describes the association between an instance and an Elastic Graphics accelerator.</p>
|
|
9096
|
-
*/
|
|
9097
|
-
export interface ElasticGpuAssociation {
|
|
9098
|
-
/**
|
|
9099
|
-
* @public
|
|
9100
|
-
* <p>The ID of the Elastic Graphics accelerator.</p>
|
|
9101
|
-
*/
|
|
9102
|
-
ElasticGpuId?: string;
|
|
9103
|
-
/**
|
|
9104
|
-
* @public
|
|
9105
|
-
* <p>The ID of the association.</p>
|
|
9106
|
-
*/
|
|
9107
|
-
ElasticGpuAssociationId?: string;
|
|
9108
|
-
/**
|
|
9109
|
-
* @public
|
|
9110
|
-
* <p>The state of the association between the instance and the
|
|
9111
|
-
* Elastic Graphics accelerator.</p>
|
|
9112
|
-
*/
|
|
9113
|
-
ElasticGpuAssociationState?: string;
|
|
9114
|
-
/**
|
|
9115
|
-
* @public
|
|
9116
|
-
* <p>The time the Elastic Graphics accelerator was associated with the instance.</p>
|
|
9117
|
-
*/
|
|
9118
|
-
ElasticGpuAssociationTime?: string;
|
|
9119
|
-
}
|
|
9120
|
-
/**
|
|
9121
|
-
* @public
|
|
9122
|
-
* <p>
|
|
9123
|
-
* Describes the association between an instance and an elastic inference accelerator.
|
|
9124
|
-
* </p>
|
|
9125
|
-
*/
|
|
9126
|
-
export interface ElasticInferenceAcceleratorAssociation {
|
|
9127
|
-
/**
|
|
9128
|
-
* @public
|
|
9129
|
-
* <p>
|
|
9130
|
-
* The Amazon Resource Name (ARN) of the elastic inference accelerator.
|
|
9131
|
-
* </p>
|
|
9132
|
-
*/
|
|
9133
|
-
ElasticInferenceAcceleratorArn?: string;
|
|
9134
|
-
/**
|
|
9135
|
-
* @public
|
|
9136
|
-
* <p>
|
|
9137
|
-
* The ID of the association.
|
|
9138
|
-
* </p>
|
|
9139
|
-
*/
|
|
9140
|
-
ElasticInferenceAcceleratorAssociationId?: string;
|
|
9141
|
-
/**
|
|
9142
|
-
* @public
|
|
9143
|
-
* <p>
|
|
9144
|
-
* The state of the elastic inference accelerator.
|
|
9145
|
-
* </p>
|
|
9146
|
-
*/
|
|
9147
|
-
ElasticInferenceAcceleratorAssociationState?: string;
|
|
9148
|
-
/**
|
|
9149
|
-
* @public
|
|
9150
|
-
* <p>
|
|
9151
|
-
* The time at which the elastic inference accelerator is associated with an instance.
|
|
9152
|
-
* </p>
|
|
9153
|
-
*/
|
|
9154
|
-
ElasticInferenceAcceleratorAssociationTime?: Date;
|
|
9155
|
-
}
|
|
9156
9120
|
/**
|
|
9157
9121
|
* @internal
|
|
9158
9122
|
*/
|
|
@@ -1,7 +1,70 @@
|
|
|
1
1
|
import { _InstanceType, ActiveInstance, ActivityStatus, AllocationStrategy, AlternatePathHint, AttachmentStatus, BatchState, CurrencyCodeValues, Explanation, IamInstanceProfile, IamInstanceProfileSpecification, IpamResourceDiscoveryAssociation, IpPermission, PathComponent, ReservedInstancesListing, ResourceType, SecurityGroupRule, Tag, TagSpecification, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair } from "./models_0";
|
|
2
2
|
import { AttributeValue, BlockDeviceMapping, FleetLaunchTemplateSpecification, FleetType, GroupIdentifier, HostnameType, InstanceInterruptionBehavior, InstanceIpv6Address, InstanceRequirements, InternetGateway, Ipam, IpamPool, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, NetworkInterfaceStatus, Placement, PlacementGroup, PlatformValues, PrivateIpAddressSpecification, SpotInstanceType, StateReason, Subnet, TargetCapacityUnitType, Tenancy } from "./models_1";
|
|
3
|
-
import { ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint
|
|
4
|
-
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, CapacityReservationSpecificationResponse, CpuOptions, DeviceType,
|
|
3
|
+
import { ReplaceRootVolumeTask, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint } from "./models_2";
|
|
4
|
+
import { ArchitectureValues, AttributeBooleanValue, BootModeValues, CapacityReservationSpecificationResponse, CpuOptions, DeviceType, EnclaveOptions, EventInformation, Filter, HypervisorType, IdFormat, InstanceBlockDeviceMapping, InstanceBootModeValues, PermissionGroup, ProductCode, VirtualizationType } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
* <p>Describes the association between an instance and an Elastic Graphics accelerator.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface ElasticGpuAssociation {
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
* <p>The ID of the Elastic Graphics accelerator.</p>
|
|
13
|
+
*/
|
|
14
|
+
ElasticGpuId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The ID of the association.</p>
|
|
18
|
+
*/
|
|
19
|
+
ElasticGpuAssociationId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>The state of the association between the instance and the
|
|
23
|
+
* Elastic Graphics accelerator.</p>
|
|
24
|
+
*/
|
|
25
|
+
ElasticGpuAssociationState?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* <p>The time the Elastic Graphics accelerator was associated with the instance.</p>
|
|
29
|
+
*/
|
|
30
|
+
ElasticGpuAssociationTime?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* @public
|
|
34
|
+
* <p>
|
|
35
|
+
* Describes the association between an instance and an elastic inference accelerator.
|
|
36
|
+
* </p>
|
|
37
|
+
*/
|
|
38
|
+
export interface ElasticInferenceAcceleratorAssociation {
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* <p>
|
|
42
|
+
* The Amazon Resource Name (ARN) of the elastic inference accelerator.
|
|
43
|
+
* </p>
|
|
44
|
+
*/
|
|
45
|
+
ElasticInferenceAcceleratorArn?: string;
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* <p>
|
|
49
|
+
* The ID of the association.
|
|
50
|
+
* </p>
|
|
51
|
+
*/
|
|
52
|
+
ElasticInferenceAcceleratorAssociationId?: string;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* <p>
|
|
56
|
+
* The state of the elastic inference accelerator.
|
|
57
|
+
* </p>
|
|
58
|
+
*/
|
|
59
|
+
ElasticInferenceAcceleratorAssociationState?: string;
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
* <p>
|
|
63
|
+
* The time at which the elastic inference accelerator is associated with an instance.
|
|
64
|
+
* </p>
|
|
65
|
+
*/
|
|
66
|
+
ElasticInferenceAcceleratorAssociationTime?: Date;
|
|
67
|
+
}
|
|
5
68
|
/**
|
|
6
69
|
* @public
|
|
7
70
|
* <p>Indicates whether your instance is configured for hibernation. This parameter is valid
|
|
@@ -10873,59 +10936,6 @@ export interface DescribeVerifiedAccessEndpointsResult {
|
|
|
10873
10936
|
*/
|
|
10874
10937
|
NextToken?: string;
|
|
10875
10938
|
}
|
|
10876
|
-
/**
|
|
10877
|
-
* @public
|
|
10878
|
-
*/
|
|
10879
|
-
export interface DescribeVerifiedAccessGroupsRequest {
|
|
10880
|
-
/**
|
|
10881
|
-
* @public
|
|
10882
|
-
* <p>The ID of the Verified Access groups.</p>
|
|
10883
|
-
*/
|
|
10884
|
-
VerifiedAccessGroupIds?: string[];
|
|
10885
|
-
/**
|
|
10886
|
-
* @public
|
|
10887
|
-
* <p>The ID of the Verified Access instance.</p>
|
|
10888
|
-
*/
|
|
10889
|
-
VerifiedAccessInstanceId?: string;
|
|
10890
|
-
/**
|
|
10891
|
-
* @public
|
|
10892
|
-
* <p>The maximum number of results to return with a single call.
|
|
10893
|
-
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
10894
|
-
*/
|
|
10895
|
-
MaxResults?: number;
|
|
10896
|
-
/**
|
|
10897
|
-
* @public
|
|
10898
|
-
* <p>The token for the next page of results.</p>
|
|
10899
|
-
*/
|
|
10900
|
-
NextToken?: string;
|
|
10901
|
-
/**
|
|
10902
|
-
* @public
|
|
10903
|
-
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
10904
|
-
*/
|
|
10905
|
-
Filters?: Filter[];
|
|
10906
|
-
/**
|
|
10907
|
-
* @public
|
|
10908
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
10909
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
10910
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
10911
|
-
*/
|
|
10912
|
-
DryRun?: boolean;
|
|
10913
|
-
}
|
|
10914
|
-
/**
|
|
10915
|
-
* @public
|
|
10916
|
-
*/
|
|
10917
|
-
export interface DescribeVerifiedAccessGroupsResult {
|
|
10918
|
-
/**
|
|
10919
|
-
* @public
|
|
10920
|
-
* <p>The ID of the Verified Access group.</p>
|
|
10921
|
-
*/
|
|
10922
|
-
VerifiedAccessGroups?: VerifiedAccessGroup[];
|
|
10923
|
-
/**
|
|
10924
|
-
* @public
|
|
10925
|
-
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
10926
|
-
*/
|
|
10927
|
-
NextToken?: string;
|
|
10928
|
-
}
|
|
10929
10939
|
/**
|
|
10930
10940
|
* @internal
|
|
10931
10941
|
*/
|
|
@@ -1,8 +1,61 @@
|
|
|
1
1
|
import { AccessScopeAnalysisFinding, AddressTransfer, AllowedPrincipal, AssociationStatus, CapacityReservationState, CurrencyCodeValues, IamInstanceProfileAssociation, InstanceEventWindow, IpamPoolAllocation, IpamResourceDiscoveryAssociation, NatGatewayAddress, SubnetAssociation, SubnetIpv6CidrBlockAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayAssociation, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPolicyTableAssociation, VerifiedAccessInstance, VerifiedAccessTrustProvider, VpcCidrBlockAssociation, VpcIpv6CidrBlockAssociation, VpcPeeringConnection } from "./models_0";
|
|
2
2
|
import { DiskImageFormat, InstanceRequirementsRequest, IpamResourceTag, NetworkInsightsAccessScopeContent, RequestIpamResourceTag, ResponseLaunchTemplateData, TargetCapacityUnitType, VolumeType, Vpc } from "./models_1";
|
|
3
|
-
import { ConnectionNotification, DnsEntry, DnsNameState, IpAddressType, PayerResponsibility, ServiceConfiguration, ServiceConnectivityType, ServiceTypeDetail, SSEType, State, SubnetCidrReservation, TransitGatewayPrefixListReference, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
3
|
+
import { ConnectionNotification, DnsEntry, DnsNameState, IpAddressType, PayerResponsibility, ServiceConfiguration, ServiceConnectivityType, ServiceTypeDetail, SSEType, State, SubnetCidrReservation, TransitGatewayPrefixListReference, VerifiedAccessGroup, Volume, VpcEndpoint, VpnConnection, VpnGateway } from "./models_2";
|
|
4
4
|
import { AttributeBooleanValue, ExportTaskS3Location, FastLaunchLaunchTemplateSpecificationResponse, FastLaunchResourceType, FastLaunchSnapshotConfigurationResponse, FastLaunchStateCode, FastSnapshotRestoreStateCode, Filter, IpamPoolCidr, MetricType, PaymentOption, PeriodType, ProductCode, StatisticType, VirtualizationType } from "./models_3";
|
|
5
5
|
import { AnalysisStatus, ArchitectureType } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface DescribeVerifiedAccessGroupsRequest {
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
* <p>The ID of the Verified Access groups.</p>
|
|
13
|
+
*/
|
|
14
|
+
VerifiedAccessGroupIds?: string[];
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
* <p>The ID of the Verified Access instance.</p>
|
|
18
|
+
*/
|
|
19
|
+
VerifiedAccessInstanceId?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>The maximum number of results to return with a single call.
|
|
23
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
24
|
+
*/
|
|
25
|
+
MaxResults?: number;
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
* <p>The token for the next page of results.</p>
|
|
29
|
+
*/
|
|
30
|
+
NextToken?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @public
|
|
33
|
+
* <p>One or more filters. Filter names and values are case-sensitive.</p>
|
|
34
|
+
*/
|
|
35
|
+
Filters?: Filter[];
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
39
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
40
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
41
|
+
*/
|
|
42
|
+
DryRun?: boolean;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
export interface DescribeVerifiedAccessGroupsResult {
|
|
48
|
+
/**
|
|
49
|
+
* @public
|
|
50
|
+
* <p>The ID of the Verified Access group.</p>
|
|
51
|
+
*/
|
|
52
|
+
VerifiedAccessGroups?: VerifiedAccessGroup[];
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
* <p>The token to use to retrieve the next page of results. This value is <code>null</code> when there are no more results to return.</p>
|
|
56
|
+
*/
|
|
57
|
+
NextToken?: string;
|
|
58
|
+
}
|
|
6
59
|
/**
|
|
7
60
|
* @public
|
|
8
61
|
*/
|
|
@@ -7434,38 +7487,6 @@ export interface GetVerifiedAccessEndpointPolicyResult {
|
|
|
7434
7487
|
*/
|
|
7435
7488
|
PolicyDocument?: string;
|
|
7436
7489
|
}
|
|
7437
|
-
/**
|
|
7438
|
-
* @public
|
|
7439
|
-
*/
|
|
7440
|
-
export interface GetVerifiedAccessGroupPolicyRequest {
|
|
7441
|
-
/**
|
|
7442
|
-
* @public
|
|
7443
|
-
* <p>The ID of the Verified Access group.</p>
|
|
7444
|
-
*/
|
|
7445
|
-
VerifiedAccessGroupId: string | undefined;
|
|
7446
|
-
/**
|
|
7447
|
-
* @public
|
|
7448
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7449
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7450
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7451
|
-
*/
|
|
7452
|
-
DryRun?: boolean;
|
|
7453
|
-
}
|
|
7454
|
-
/**
|
|
7455
|
-
* @public
|
|
7456
|
-
*/
|
|
7457
|
-
export interface GetVerifiedAccessGroupPolicyResult {
|
|
7458
|
-
/**
|
|
7459
|
-
* @public
|
|
7460
|
-
* <p>The status of the Verified Access policy.</p>
|
|
7461
|
-
*/
|
|
7462
|
-
PolicyEnabled?: boolean;
|
|
7463
|
-
/**
|
|
7464
|
-
* @public
|
|
7465
|
-
* <p>The Verified Access policy document.</p>
|
|
7466
|
-
*/
|
|
7467
|
-
PolicyDocument?: string;
|
|
7468
|
-
}
|
|
7469
7490
|
/**
|
|
7470
7491
|
* @internal
|
|
7471
7492
|
*/
|