@aws-sdk/client-ec2 3.866.0 → 3.871.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 +8 -0
- package/dist-cjs/index.js +140 -36
- package/dist-es/EC2.js +2 -0
- package/dist-es/commands/ModifyInstanceConnectEndpointCommand.js +22 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +3 -0
- package/dist-es/models/models_2.js +0 -11
- package/dist-es/models/models_3.js +11 -0
- package/dist-es/models/models_5.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +104 -22
- package/dist-types/EC2.d.ts +7 -0
- package/dist-types/EC2Client.d.ts +3 -2
- package/dist-types/commands/CreateInstanceConnectEndpointCommand.d.ts +11 -1
- package/dist-types/commands/DeleteInstanceConnectEndpointCommand.d.ts +11 -1
- package/dist-types/commands/DescribeCapacityReservationsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeCarrierGatewaysCommand.d.ts +1 -2
- package/dist-types/commands/DescribeInstanceConnectEndpointsCommand.d.ts +11 -1
- package/dist-types/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeVolumeStatusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVpcEndpointConnectionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeVpcEndpointsCommand.d.ts +1 -2
- package/dist-types/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +1 -1
- package/dist-types/commands/ModifyInstanceConnectEndpointCommand.d.ts +81 -0
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +2 -1
- package/dist-types/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_1.d.ts +41 -43
- package/dist-types/models/models_2.d.ts +44 -152
- package/dist-types/models/models_3.d.ts +153 -78
- package/dist-types/models/models_4.d.ts +77 -48
- package/dist-types/models/models_5.d.ts +51 -99
- package/dist-types/models/models_6.d.ts +94 -61
- package/dist-types/models/models_7.d.ts +132 -70
- package/dist-types/models/models_8.d.ts +69 -1
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +17 -0
- package/dist-types/ts3.4/EC2Client.d.ts +6 -0
- package/dist-types/ts3.4/commands/DescribeCapacityReservationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeCarrierGatewaysCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveriesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeIpamResourceDiscoveryAssociationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/DescribeVpcEndpointConnectionsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeVpcEndpointsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/GetSnapshotBlockPublicAccessStateCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ModifyInstanceConnectEndpointCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupMembersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/RegisterTransitGatewayMulticastGroupSourcesCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +12 -8
- package/dist-types/ts3.4/models/models_2.d.ts +8 -41
- package/dist-types/ts3.4/models/models_3.d.ts +46 -13
- package/dist-types/ts3.4/models/models_4.d.ts +12 -12
- package/dist-types/ts3.4/models/models_5.d.ts +14 -13
- package/dist-types/ts3.4/models/models_6.d.ts +13 -9
- package/dist-types/ts3.4/models/models_7.d.ts +19 -21
- package/dist-types/ts3.4/models/models_8.d.ts +22 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1,6 +1,157 @@
|
|
|
1
1
|
import { AccountAttribute, AccountAttributeName, Address, AddressAttribute, AddressAttributeName, AddressTransfer, BundleTask, ByoipCidr, CapacityReservationFleetState, InstanceEventWindowState, Tag, TagSpecification, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem, VerifiedAccessInstance, VerifiedAccessTrustProvider, VpcAttachment, VpcPeeringConnection } from "./models_0";
|
|
2
|
-
import {
|
|
3
|
-
import { LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, RouteServer, RouteServerEndpoint, RouteServerPeer, SubnetCidrReservation, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion,
|
|
2
|
+
import { CapacityReservationTenancy, CarrierGateway, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipCidr, CoipPool, Ec2InstanceConnectEndpoint, FleetCapacityReservation, FleetCapacityReservationTenancy, FleetInstanceMatchCriteria, GatewayType, IpAddressType, Ipam, IpamExternalResourceVerificationToken, IpamPool, IpamResourceDiscovery, IpamScope, LaunchTemplate } from "./models_1";
|
|
3
|
+
import { DnsEntry, DnsOptions, LastError, LocalGatewayRoute, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, RouteServer, RouteServerEndpoint, RouteServerPeer, SecurityGroupIdentifier, SubnetCidrReservation, SubnetIpPrefixes, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayPrefixListReference, TransitGatewayRoute, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, VpcBlockPublicAccessExclusion, VpcEndpointType } from "./models_2";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
* @enum
|
|
7
|
+
*/
|
|
8
|
+
export declare const State: {
|
|
9
|
+
readonly Available: "Available";
|
|
10
|
+
readonly Deleted: "Deleted";
|
|
11
|
+
readonly Deleting: "Deleting";
|
|
12
|
+
readonly Expired: "Expired";
|
|
13
|
+
readonly Failed: "Failed";
|
|
14
|
+
readonly Partial: "Partial";
|
|
15
|
+
readonly Pending: "Pending";
|
|
16
|
+
readonly PendingAcceptance: "PendingAcceptance";
|
|
17
|
+
readonly Rejected: "Rejected";
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
*/
|
|
22
|
+
export type State = (typeof State)[keyof typeof State];
|
|
23
|
+
/**
|
|
24
|
+
* <p>Describes a VPC endpoint.</p>
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export interface VpcEndpoint {
|
|
28
|
+
/**
|
|
29
|
+
* <p>The ID of the endpoint.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
VpcEndpointId?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* <p>The type of endpoint.</p>
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
VpcEndpointType?: VpcEndpointType | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* <p>The ID of the VPC to which the endpoint is associated.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
VpcId?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* <p>The name of the service to which the endpoint is associated.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
ServiceName?: string | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* <p>The state of the endpoint.</p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
State?: State | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The policy document associated with the endpoint, if applicable.</p>
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
PolicyDocument?: string | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* <p>(Gateway endpoint) The IDs of the route tables associated with the endpoint.</p>
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
62
|
+
RouteTableIds?: string[] | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* <p>(Interface endpoint) The subnets for the endpoint.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
SubnetIds?: string[] | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>(Interface endpoint) Information about the security groups that are associated with
|
|
70
|
+
* the network interface.</p>
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
Groups?: SecurityGroupIdentifier[] | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* <p>The IP address type for the endpoint.</p>
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
IpAddressType?: IpAddressType | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* <p>The DNS options for the endpoint.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
DnsOptions?: DnsOptions | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* <p>(Interface endpoint) Indicates whether the VPC is associated with a private hosted zone.</p>
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
PrivateDnsEnabled?: boolean | undefined;
|
|
89
|
+
/**
|
|
90
|
+
* <p>Indicates whether the endpoint is being managed by its service.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
RequesterManaged?: boolean | undefined;
|
|
94
|
+
/**
|
|
95
|
+
* <p>(Interface endpoint) The network interfaces for the endpoint.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
NetworkInterfaceIds?: string[] | undefined;
|
|
99
|
+
/**
|
|
100
|
+
* <p>(Interface endpoint) The DNS entries for the endpoint.</p>
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
DnsEntries?: DnsEntry[] | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* <p>The date and time that the endpoint was created.</p>
|
|
106
|
+
* @public
|
|
107
|
+
*/
|
|
108
|
+
CreationTimestamp?: Date | undefined;
|
|
109
|
+
/**
|
|
110
|
+
* <p>The tags assigned to the endpoint.</p>
|
|
111
|
+
* @public
|
|
112
|
+
*/
|
|
113
|
+
Tags?: Tag[] | undefined;
|
|
114
|
+
/**
|
|
115
|
+
* <p>The ID of the Amazon Web Services account that owns the endpoint.</p>
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
OwnerId?: string | undefined;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The last error that occurred for endpoint.</p>
|
|
121
|
+
* @public
|
|
122
|
+
*/
|
|
123
|
+
LastError?: LastError | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* <p>Array of IPv4 prefixes.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
Ipv4Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
129
|
+
/**
|
|
130
|
+
* <p>Array of IPv6 prefixes.</p>
|
|
131
|
+
* @public
|
|
132
|
+
*/
|
|
133
|
+
Ipv6Prefixes?: SubnetIpPrefixes[] | undefined;
|
|
134
|
+
/**
|
|
135
|
+
* <p>Reason for the failure.</p>
|
|
136
|
+
* @public
|
|
137
|
+
*/
|
|
138
|
+
FailureReason?: string | undefined;
|
|
139
|
+
/**
|
|
140
|
+
* <p>The Amazon Resource Name (ARN) of the service network.</p>
|
|
141
|
+
* @public
|
|
142
|
+
*/
|
|
143
|
+
ServiceNetworkArn?: string | undefined;
|
|
144
|
+
/**
|
|
145
|
+
* <p>The Amazon Resource Name (ARN) of the resource configuration.</p>
|
|
146
|
+
* @public
|
|
147
|
+
*/
|
|
148
|
+
ResourceConfigurationArn?: string | undefined;
|
|
149
|
+
/**
|
|
150
|
+
* <p>The Region where the service is hosted.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
ServiceRegion?: string | undefined;
|
|
154
|
+
}
|
|
4
155
|
/**
|
|
5
156
|
* @public
|
|
6
157
|
*/
|
|
@@ -6665,82 +6816,6 @@ export interface DescribeCapacityReservationsRequest {
|
|
|
6665
6816
|
*/
|
|
6666
6817
|
DryRun?: boolean | undefined;
|
|
6667
6818
|
}
|
|
6668
|
-
/**
|
|
6669
|
-
* @public
|
|
6670
|
-
*/
|
|
6671
|
-
export interface DescribeCapacityReservationsResult {
|
|
6672
|
-
/**
|
|
6673
|
-
* <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>
|
|
6674
|
-
* @public
|
|
6675
|
-
*/
|
|
6676
|
-
NextToken?: string | undefined;
|
|
6677
|
-
/**
|
|
6678
|
-
* <p>Information about the Capacity Reservations.</p>
|
|
6679
|
-
* @public
|
|
6680
|
-
*/
|
|
6681
|
-
CapacityReservations?: CapacityReservation[] | undefined;
|
|
6682
|
-
}
|
|
6683
|
-
/**
|
|
6684
|
-
* @public
|
|
6685
|
-
*/
|
|
6686
|
-
export interface DescribeCarrierGatewaysRequest {
|
|
6687
|
-
/**
|
|
6688
|
-
* <p>One or more carrier gateway IDs.</p>
|
|
6689
|
-
* @public
|
|
6690
|
-
*/
|
|
6691
|
-
CarrierGatewayIds?: string[] | undefined;
|
|
6692
|
-
/**
|
|
6693
|
-
* <p>One or more filters.</p>
|
|
6694
|
-
* <ul>
|
|
6695
|
-
* <li>
|
|
6696
|
-
* <p>
|
|
6697
|
-
* <code>carrier-gateway-id</code> - The ID of the carrier gateway.</p>
|
|
6698
|
-
* </li>
|
|
6699
|
-
* <li>
|
|
6700
|
-
* <p>
|
|
6701
|
-
* <code>state</code> - The state of the carrier gateway (<code>pending</code> |
|
|
6702
|
-
* <code>failed</code> | <code>available</code> | <code>deleting</code> | <code>deleted</code>).</p>
|
|
6703
|
-
* </li>
|
|
6704
|
-
* <li>
|
|
6705
|
-
* <p>
|
|
6706
|
-
* <code>owner-id</code> - The Amazon Web Services account ID of the owner of the carrier gateway.</p>
|
|
6707
|
-
* </li>
|
|
6708
|
-
* <li>
|
|
6709
|
-
* <p>
|
|
6710
|
-
* <code>tag</code>:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
|
|
6711
|
-
* For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
|
|
6712
|
-
* </li>
|
|
6713
|
-
* <li>
|
|
6714
|
-
* <p>
|
|
6715
|
-
* <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
|
|
6716
|
-
* </li>
|
|
6717
|
-
* <li>
|
|
6718
|
-
* <p>
|
|
6719
|
-
* <code>vpc-id</code> - The ID of the VPC associated with the carrier gateway.</p>
|
|
6720
|
-
* </li>
|
|
6721
|
-
* </ul>
|
|
6722
|
-
* @public
|
|
6723
|
-
*/
|
|
6724
|
-
Filters?: Filter[] | undefined;
|
|
6725
|
-
/**
|
|
6726
|
-
* <p>The maximum number of results to return with a single call.
|
|
6727
|
-
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
6728
|
-
* @public
|
|
6729
|
-
*/
|
|
6730
|
-
MaxResults?: number | undefined;
|
|
6731
|
-
/**
|
|
6732
|
-
* <p>The token for the next page of results.</p>
|
|
6733
|
-
* @public
|
|
6734
|
-
*/
|
|
6735
|
-
NextToken?: string | undefined;
|
|
6736
|
-
/**
|
|
6737
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
6738
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
6739
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
6740
|
-
* @public
|
|
6741
|
-
*/
|
|
6742
|
-
DryRun?: boolean | undefined;
|
|
6743
|
-
}
|
|
6744
6819
|
/**
|
|
6745
6820
|
* @internal
|
|
6746
6821
|
*/
|
|
@@ -1,7 +1,83 @@
|
|
|
1
1
|
import { ActiveInstance, AllocationState, AllowsMultipleInstanceTypes, AssociationStatus, AttachmentStatus, AutoPlacement, ClientVpnAuthorizationRuleStatus, CurrencyCodeValues, HostMaintenance, HostRecovery, IamInstanceProfile, IamInstanceProfileAssociation, InstanceEventWindow, Tag } from "./models_0";
|
|
2
|
-
import { _InstanceType, AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTargetResponse, CarrierGateway, ClientVpnAuthenticationType, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, DefaultTargetCapacityType, DestinationFileFormat, DhcpOptions, DiskImageFormat, Ec2InstanceConnectEndpoint, EgressOnlyInternetGateway, ExportTask, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, HostnameType, InstanceBandwidthWeighting, InstanceLifecycle, InternetGateway, IpamExternalResourceVerificationToken, IpamPool,
|
|
2
|
+
import { _InstanceType, AmdSevSnpSpecification, AttributeValue, BlockDeviceMapping, CapacityReservation, CapacityReservationPreference, CapacityReservationTargetResponse, CarrierGateway, ClientVpnAuthenticationType, ClientVpnEndpointStatus, ClientVpnRouteStatus, CoipPool, CustomerGateway, DefaultTargetCapacityType, DestinationFileFormat, DhcpOptions, DiskImageFormat, Ec2InstanceConnectEndpoint, EgressOnlyInternetGateway, ExportTask, FleetCapacityReservationUsageStrategy, FleetExcessCapacityTerminationPolicy, FleetLaunchTemplateOverrides, FleetLaunchTemplateSpecification, FleetOnDemandAllocationStrategy, FleetReplacementStrategy, FleetType, HostnameType, InstanceBandwidthWeighting, InstanceLifecycle, InternetGateway, IpamExternalResourceVerificationToken, IpamPool, LaunchTemplateAndOverridesResponse, LogDestinationType, OperatorResponse, Placement, PlatformValues, SpotAllocationStrategy, SpotInstanceInterruptionBehavior, TargetCapacityUnitType, TrafficType, TransportProtocol } from "./models_1";
|
|
3
3
|
import { GroupIdentifier, InstanceIpv6Address, NetworkInterfaceStatus, StateReason } from "./models_2";
|
|
4
4
|
import { Byoasn, Filter, FleetStateCode, IdFormat, InstanceTagNotificationAttribute } from "./models_3";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DescribeCapacityReservationsResult {
|
|
9
|
+
/**
|
|
10
|
+
* <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>
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
NextToken?: string | undefined;
|
|
14
|
+
/**
|
|
15
|
+
* <p>Information about the Capacity Reservations.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
CapacityReservations?: CapacityReservation[] | undefined;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
*/
|
|
23
|
+
export interface DescribeCarrierGatewaysRequest {
|
|
24
|
+
/**
|
|
25
|
+
* <p>One or more carrier gateway IDs.</p>
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
CarrierGatewayIds?: string[] | undefined;
|
|
29
|
+
/**
|
|
30
|
+
* <p>One or more filters.</p>
|
|
31
|
+
* <ul>
|
|
32
|
+
* <li>
|
|
33
|
+
* <p>
|
|
34
|
+
* <code>carrier-gateway-id</code> - The ID of the carrier gateway.</p>
|
|
35
|
+
* </li>
|
|
36
|
+
* <li>
|
|
37
|
+
* <p>
|
|
38
|
+
* <code>state</code> - The state of the carrier gateway (<code>pending</code> |
|
|
39
|
+
* <code>failed</code> | <code>available</code> | <code>deleting</code> | <code>deleted</code>).</p>
|
|
40
|
+
* </li>
|
|
41
|
+
* <li>
|
|
42
|
+
* <p>
|
|
43
|
+
* <code>owner-id</code> - The Amazon Web Services account ID of the owner of the carrier gateway.</p>
|
|
44
|
+
* </li>
|
|
45
|
+
* <li>
|
|
46
|
+
* <p>
|
|
47
|
+
* <code>tag</code>:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value.
|
|
48
|
+
* For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
|
|
49
|
+
* </li>
|
|
50
|
+
* <li>
|
|
51
|
+
* <p>
|
|
52
|
+
* <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
|
|
53
|
+
* </li>
|
|
54
|
+
* <li>
|
|
55
|
+
* <p>
|
|
56
|
+
* <code>vpc-id</code> - The ID of the VPC associated with the carrier gateway.</p>
|
|
57
|
+
* </li>
|
|
58
|
+
* </ul>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
Filters?: Filter[] | undefined;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The maximum number of results to return with a single call.
|
|
64
|
+
* To retrieve the remaining results, make another call with the returned <code>nextToken</code> value.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
MaxResults?: number | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* <p>The token for the next page of results.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
NextToken?: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
75
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
76
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
77
|
+
* @public
|
|
78
|
+
*/
|
|
79
|
+
DryRun?: boolean | undefined;
|
|
80
|
+
}
|
|
5
81
|
/**
|
|
6
82
|
* @public
|
|
7
83
|
*/
|
|
@@ -10699,53 +10775,6 @@ export interface DescribeIpamResourceDiscoveriesRequest {
|
|
|
10699
10775
|
*/
|
|
10700
10776
|
Filters?: Filter[] | undefined;
|
|
10701
10777
|
}
|
|
10702
|
-
/**
|
|
10703
|
-
* @public
|
|
10704
|
-
*/
|
|
10705
|
-
export interface DescribeIpamResourceDiscoveriesResult {
|
|
10706
|
-
/**
|
|
10707
|
-
* <p>The resource discoveries.</p>
|
|
10708
|
-
* @public
|
|
10709
|
-
*/
|
|
10710
|
-
IpamResourceDiscoveries?: IpamResourceDiscovery[] | undefined;
|
|
10711
|
-
/**
|
|
10712
|
-
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
10713
|
-
* @public
|
|
10714
|
-
*/
|
|
10715
|
-
NextToken?: string | undefined;
|
|
10716
|
-
}
|
|
10717
|
-
/**
|
|
10718
|
-
* @public
|
|
10719
|
-
*/
|
|
10720
|
-
export interface DescribeIpamResourceDiscoveryAssociationsRequest {
|
|
10721
|
-
/**
|
|
10722
|
-
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
10723
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
10724
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
10725
|
-
* @public
|
|
10726
|
-
*/
|
|
10727
|
-
DryRun?: boolean | undefined;
|
|
10728
|
-
/**
|
|
10729
|
-
* <p>The resource discovery association IDs.</p>
|
|
10730
|
-
* @public
|
|
10731
|
-
*/
|
|
10732
|
-
IpamResourceDiscoveryAssociationIds?: string[] | undefined;
|
|
10733
|
-
/**
|
|
10734
|
-
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
10735
|
-
* @public
|
|
10736
|
-
*/
|
|
10737
|
-
NextToken?: string | undefined;
|
|
10738
|
-
/**
|
|
10739
|
-
* <p>The maximum number of resource discovery associations to return in one page of results.</p>
|
|
10740
|
-
* @public
|
|
10741
|
-
*/
|
|
10742
|
-
MaxResults?: number | undefined;
|
|
10743
|
-
/**
|
|
10744
|
-
* <p>The resource discovery association filters.</p>
|
|
10745
|
-
* @public
|
|
10746
|
-
*/
|
|
10747
|
-
Filters?: Filter[] | undefined;
|
|
10748
|
-
}
|
|
10749
10778
|
/**
|
|
10750
10779
|
* @internal
|
|
10751
10780
|
*/
|
|
@@ -1,8 +1,55 @@
|
|
|
1
1
|
import { ActiveInstance, ActivityStatus, AllocationStrategy, AlternatePathHint, BatchState, CurrencyCodeValues, Explanation, IamInstanceProfileSpecification, IpamResourceDiscoveryAssociation, IpPermission, PathComponent, ReservedInstancesListing, ResourceType, SecurityGroupRule, SecurityGroupVpcAssociationState, Tag, TagSpecification, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayAttachmentState, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, TrunkInterfaceAssociation, UserIdGroupPair, VerifiedAccessInstance, VerifiedAccessTrustProvider } from "./models_0";
|
|
2
|
-
import { _InstanceType, AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, FleetType, InstanceInterruptionBehavior, InstanceRequirements, IpAddressType, Ipam, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, MacModificationTask, PrivateIpAddressSpecification, SpotInstanceType, Subnet, TargetCapacityUnitType, Tenancy, VolumeType } from "./models_1";
|
|
3
|
-
import { DnsEntry, GroupIdentifier, InstanceIpv6Address, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, PlacementGroup, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault,
|
|
4
|
-
import { ConnectionNotification, Filter, IdFormat } from "./models_3";
|
|
2
|
+
import { _InstanceType, AttributeValue, BlockDeviceMapping, ConnectionTrackingSpecificationRequest, EnaSrdSpecificationRequest, FleetLaunchTemplateSpecification, FleetType, InstanceInterruptionBehavior, InstanceRequirements, IpAddressType, Ipam, IpamResourceDiscovery, IpamScope, Ipv4PrefixSpecificationRequest, Ipv6PrefixSpecificationRequest, KeyType, LaunchTemplate, MacModificationTask, PrivateIpAddressSpecification, SpotInstanceType, Subnet, TargetCapacityUnitType, Tenancy, VolumeType } from "./models_1";
|
|
3
|
+
import { DnsEntry, GroupIdentifier, InstanceIpv6Address, LaunchTemplateVersion, LocalGatewayRouteTable, LocalGatewayRouteTableVirtualInterfaceGroupAssociation, LocalGatewayRouteTableVpcAssociation, LocalGatewayVirtualInterface, LocalGatewayVirtualInterfaceGroup, ManagedPrefixList, NatGateway, NetworkAcl, NetworkInsightsAccessScope, NetworkInsightsPath, NetworkInterface, NetworkInterfaceAttachment, NetworkInterfacePermission, PlacementGroup, ReplaceRootVolumeTask, RouteServer, RouteServerEndpoint, RouteServerPeer, RouteTable, Snapshot, SnapshotState, SpotDatafeedSubscription, SpotInstanceStateFault, StorageTier, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorSession, TrafficMirrorTarget, TransitGateway, TransitGatewayConnect, TransitGatewayConnectPeer, TransitGatewayMulticastDomain, TransitGatewayPolicyTable, TransitGatewayRouteTable, TransitGatewayRouteTableAnnouncement, VerifiedAccessEndpoint, VerifiedAccessGroup, Volume, VpcBlockPublicAccessExclusion } from "./models_2";
|
|
4
|
+
import { ConnectionNotification, Filter, IdFormat, State } from "./models_3";
|
|
5
5
|
import { AttributeBooleanValue, EventInformation, PermissionGroup, ProductCode } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*/
|
|
9
|
+
export interface DescribeIpamResourceDiscoveriesResult {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The resource discoveries.</p>
|
|
12
|
+
* @public
|
|
13
|
+
*/
|
|
14
|
+
IpamResourceDiscoveries?: IpamResourceDiscovery[] | undefined;
|
|
15
|
+
/**
|
|
16
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
NextToken?: string | undefined;
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
export interface DescribeIpamResourceDiscoveryAssociationsRequest {
|
|
25
|
+
/**
|
|
26
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
27
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
28
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
DryRun?: boolean | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The resource discovery association IDs.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
IpamResourceDiscoveryAssociationIds?: string[] | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>Specify the pagination token from a previous request to retrieve the next page of results.</p>
|
|
39
|
+
* @public
|
|
40
|
+
*/
|
|
41
|
+
NextToken?: string | undefined;
|
|
42
|
+
/**
|
|
43
|
+
* <p>The maximum number of resource discovery associations to return in one page of results.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
MaxResults?: number | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>The resource discovery association filters.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
Filters?: Filter[] | undefined;
|
|
52
|
+
}
|
|
6
53
|
/**
|
|
7
54
|
* @public
|
|
8
55
|
*/
|
|
@@ -10399,6 +10446,7 @@ export declare const VolumeStatusInfoStatus: {
|
|
|
10399
10446
|
readonly impaired: "impaired";
|
|
10400
10447
|
readonly insufficient_data: "insufficient-data";
|
|
10401
10448
|
readonly ok: "ok";
|
|
10449
|
+
readonly warning: "warning";
|
|
10402
10450
|
};
|
|
10403
10451
|
/**
|
|
10404
10452
|
* @public
|
|
@@ -10957,11 +11005,6 @@ export interface DescribeVpcEndpointAssociationsRequest {
|
|
|
10957
11005
|
* <code>resource-configuration-group-arn</code> - The Amazon Resource Name (ARN) of
|
|
10958
11006
|
* the resource configuration of type GROUP.</p>
|
|
10959
11007
|
* </li>
|
|
10960
|
-
* <li>
|
|
10961
|
-
* <p>
|
|
10962
|
-
* <code>service-network-resource-association-id</code> - The ID of the
|
|
10963
|
-
* association.</p>
|
|
10964
|
-
* </li>
|
|
10965
11008
|
* </ul>
|
|
10966
11009
|
* @public
|
|
10967
11010
|
*/
|
|
@@ -11268,97 +11311,6 @@ export interface VpcEndpointConnection {
|
|
|
11268
11311
|
*/
|
|
11269
11312
|
VpcEndpointRegion?: string | undefined;
|
|
11270
11313
|
}
|
|
11271
|
-
/**
|
|
11272
|
-
* @public
|
|
11273
|
-
*/
|
|
11274
|
-
export interface DescribeVpcEndpointConnectionsResult {
|
|
11275
|
-
/**
|
|
11276
|
-
* <p>Information about the VPC endpoint connections.</p>
|
|
11277
|
-
* @public
|
|
11278
|
-
*/
|
|
11279
|
-
VpcEndpointConnections?: VpcEndpointConnection[] | undefined;
|
|
11280
|
-
/**
|
|
11281
|
-
* <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>
|
|
11282
|
-
* @public
|
|
11283
|
-
*/
|
|
11284
|
-
NextToken?: string | undefined;
|
|
11285
|
-
}
|
|
11286
|
-
/**
|
|
11287
|
-
* @public
|
|
11288
|
-
*/
|
|
11289
|
-
export interface DescribeVpcEndpointsRequest {
|
|
11290
|
-
/**
|
|
11291
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
11292
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
11293
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
11294
|
-
* @public
|
|
11295
|
-
*/
|
|
11296
|
-
DryRun?: boolean | undefined;
|
|
11297
|
-
/**
|
|
11298
|
-
* <p>The IDs of the VPC endpoints.</p>
|
|
11299
|
-
* @public
|
|
11300
|
-
*/
|
|
11301
|
-
VpcEndpointIds?: string[] | undefined;
|
|
11302
|
-
/**
|
|
11303
|
-
* <p>The filters.</p>
|
|
11304
|
-
* <ul>
|
|
11305
|
-
* <li>
|
|
11306
|
-
* <p>
|
|
11307
|
-
* <code>ip-address-type</code> - The IP address type (<code>ipv4</code> | <code>ipv6</code>).</p>
|
|
11308
|
-
* </li>
|
|
11309
|
-
* <li>
|
|
11310
|
-
* <p>
|
|
11311
|
-
* <code>service-name</code> - The name of the service.</p>
|
|
11312
|
-
* </li>
|
|
11313
|
-
* <li>
|
|
11314
|
-
* <p>
|
|
11315
|
-
* <code>service-region</code> - The Region of the service.</p>
|
|
11316
|
-
* </li>
|
|
11317
|
-
* <li>
|
|
11318
|
-
* <p>
|
|
11319
|
-
* <code>tag</code>:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key <code>Owner</code> and the value <code>TeamA</code>, specify <code>tag:Owner</code> for the filter name and <code>TeamA</code> for the filter value.</p>
|
|
11320
|
-
* </li>
|
|
11321
|
-
* <li>
|
|
11322
|
-
* <p>
|
|
11323
|
-
* <code>tag-key</code> - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.</p>
|
|
11324
|
-
* </li>
|
|
11325
|
-
* <li>
|
|
11326
|
-
* <p>
|
|
11327
|
-
* <code>vpc-id</code> - The ID of the VPC in which the endpoint resides.</p>
|
|
11328
|
-
* </li>
|
|
11329
|
-
* <li>
|
|
11330
|
-
* <p>
|
|
11331
|
-
* <code>vpc-endpoint-id</code> - The ID of the endpoint.</p>
|
|
11332
|
-
* </li>
|
|
11333
|
-
* <li>
|
|
11334
|
-
* <p>
|
|
11335
|
-
* <code>vpc-endpoint-state</code> - The state of the endpoint
|
|
11336
|
-
* (<code>pendingAcceptance</code> | <code>pending</code> |
|
|
11337
|
-
* <code>available</code> | <code>deleting</code> | <code>deleted</code> |
|
|
11338
|
-
* <code>rejected</code> | <code>failed</code>).</p>
|
|
11339
|
-
* </li>
|
|
11340
|
-
* <li>
|
|
11341
|
-
* <p>
|
|
11342
|
-
* <code>vpc-endpoint-type</code> - The type of VPC endpoint (<code>Interface</code> |
|
|
11343
|
-
* <code>Gateway</code> | <code>GatewayLoadBalancer</code> | <code>Resource</code> |
|
|
11344
|
-
* <code>ServiceNetwork</code>).</p>
|
|
11345
|
-
* </li>
|
|
11346
|
-
* </ul>
|
|
11347
|
-
* @public
|
|
11348
|
-
*/
|
|
11349
|
-
Filters?: Filter[] | undefined;
|
|
11350
|
-
/**
|
|
11351
|
-
* <p>The maximum number of items to return for this request. The request returns a token that you can specify in a subsequent call to get the next set of results.</p>
|
|
11352
|
-
* <p>Constraint: If the value is greater than 1,000, we return only 1,000 items.</p>
|
|
11353
|
-
* @public
|
|
11354
|
-
*/
|
|
11355
|
-
MaxResults?: number | undefined;
|
|
11356
|
-
/**
|
|
11357
|
-
* <p>The token for the next set of items to return. (You received this token from a prior call.)</p>
|
|
11358
|
-
* @public
|
|
11359
|
-
*/
|
|
11360
|
-
NextToken?: string | undefined;
|
|
11361
|
-
}
|
|
11362
11314
|
/**
|
|
11363
11315
|
* @internal
|
|
11364
11316
|
*/
|