@aws-sdk/client-ec2 3.47.2 → 3.48.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/CHANGELOG.md +11 -0
- package/dist-cjs/EC2.js +45 -0
- package/dist-cjs/commands/DescribeFastLaunchImagesCommand.js +36 -0
- package/dist-cjs/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-cjs/commands/DescribeReservedInstancesListingsCommand.js +3 -3
- package/dist-cjs/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-cjs/commands/DisableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/EnableFastLaunchCommand.js +36 -0
- package/dist-cjs/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-cjs/commands/GetIpamAddressHistoryCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolAllocationsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamPoolCidrsCommand.js +3 -3
- package/dist-cjs/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-cjs/commands/RestoreAddressToClassicCommand.js +3 -3
- package/dist-cjs/commands/RestoreManagedPrefixListVersionCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotFromRecycleBinCommand.js +3 -3
- package/dist-cjs/commands/RestoreSnapshotTierCommand.js +3 -3
- package/dist-cjs/commands/RevokeClientVpnIngressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupEgressCommand.js +3 -3
- package/dist-cjs/commands/RevokeSecurityGroupIngressCommand.js +3 -3
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +14 -7
- package/dist-cjs/models/models_1.js +11 -6
- package/dist-cjs/models/models_2.js +7 -13
- package/dist-cjs/models/models_3.js +61 -53
- package/dist-cjs/models/models_4.js +89 -101
- package/dist-cjs/models/models_5.js +101 -96
- package/dist-cjs/models/models_6.js +92 -2
- package/dist-cjs/pagination/DescribeFastLaunchImagesPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_ec2.js +501 -17
- package/dist-es/EC2.js +45 -0
- package/dist-es/commands/DescribeFastLaunchImagesCommand.js +39 -0
- package/dist-es/commands/DescribeReservedInstancesCommand.js +2 -1
- package/dist-es/commands/DescribeReservedInstancesListingsCommand.js +1 -1
- package/dist-es/commands/DescribeReservedInstancesModificationsCommand.js +1 -2
- package/dist-es/commands/DisableFastLaunchCommand.js +39 -0
- package/dist-es/commands/EnableFastLaunchCommand.js +39 -0
- package/dist-es/commands/GetInstanceTypesFromInstanceRequirementsCommand.js +2 -1
- package/dist-es/commands/GetIpamAddressHistoryCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolAllocationsCommand.js +1 -1
- package/dist-es/commands/GetIpamPoolCidrsCommand.js +1 -1
- package/dist-es/commands/GetIpamResourceCidrsCommand.js +1 -2
- package/dist-es/commands/RestoreAddressToClassicCommand.js +1 -1
- package/dist-es/commands/RestoreManagedPrefixListVersionCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotFromRecycleBinCommand.js +1 -1
- package/dist-es/commands/RestoreSnapshotTierCommand.js +1 -1
- package/dist-es/commands/RevokeClientVpnIngressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupEgressCommand.js +1 -1
- package/dist-es/commands/RevokeSecurityGroupIngressCommand.js +1 -1
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +10 -5
- package/dist-es/models/models_1.js +5 -0
- package/dist-es/models/models_2.js +4 -8
- package/dist-es/models/models_3.js +41 -33
- package/dist-es/models/models_4.js +57 -75
- package/dist-es/models/models_5.js +75 -60
- package/dist-es/models/models_6.js +60 -0
- package/dist-es/pagination/DescribeFastLaunchImagesPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_ec2.js +1498 -991
- package/dist-types/EC2.d.ts +28 -0
- package/dist-types/EC2Client.d.ts +5 -2
- package/dist-types/commands/DescribeFastLaunchImagesCommand.d.ts +35 -0
- package/dist-types/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/commands/DisableFastLaunchCommand.d.ts +37 -0
- package/dist-types/commands/EnableFastLaunchCommand.d.ts +40 -0
- package/dist-types/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +25 -11
- package/dist-types/models/models_1.d.ts +11 -8
- package/dist-types/models/models_2.d.ts +18 -71
- package/dist-types/models/models_3.d.ts +240 -298
- package/dist-types/models/models_4.d.ts +500 -334
- package/dist-types/models/models_5.d.ts +334 -420
- package/dist-types/models/models_6.d.ts +413 -3
- package/dist-types/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_ec2.d.ts +9 -0
- package/dist-types/ts3.4/EC2.d.ts +15 -0
- package/dist-types/ts3.4/EC2Client.d.ts +5 -2
- package/dist-types/ts3.4/commands/DescribeFastLaunchImagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeReservedInstancesCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesListingsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReservedInstancesModificationsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/DisableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/EnableFastLaunchCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetInstanceTypesFromInstanceRequirementsCommand.d.ts +2 -1
- package/dist-types/ts3.4/commands/GetIpamAddressHistoryCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolAllocationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamPoolCidrsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetIpamResourceCidrsCommand.d.ts +1 -2
- package/dist-types/ts3.4/commands/RestoreAddressToClassicCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreManagedPrefixListVersionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotFromRecycleBinCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RestoreSnapshotTierCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeClientVpnIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupEgressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/RevokeSecurityGroupIngressCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -5
- package/dist-types/ts3.4/models/models_1.d.ts +5 -2
- package/dist-types/ts3.4/models/models_2.d.ts +12 -37
- package/dist-types/ts3.4/models/models_3.d.ts +122 -122
- package/dist-types/ts3.4/models/models_4.d.ts +224 -194
- package/dist-types/ts3.4/models/models_5.d.ts +196 -219
- package/dist-types/ts3.4/models/models_6.d.ts +218 -3
- package/dist-types/ts3.4/pagination/DescribeFastLaunchImagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +9 -0
- package/package.json +3 -3
|
@@ -1,8 +1,330 @@
|
|
|
1
|
-
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions,
|
|
2
|
-
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior,
|
|
1
|
+
import { _InstanceType, AccessScopeAnalysisFinding, AddIpamOperatingRegion, AddPrefixListEntry, AddressAttribute, AddressAttributeName, Affinity, ApplianceModeSupportValue, AttributeValue, AutoPlacement, ByoipCidr, ClientConnectOptions, ClientLoginBannerOptions, ConnectionLogOptions, CurrencyCodeValues, DnsSupportValue, EndDateType, FleetExcessCapacityTerminationPolicy, HostnameType, HostRecovery, IamInstanceProfileAssociation, IamInstanceProfileSpecification, InstanceEventWindow, IpamPoolAllocation, Ipv6SupportValue, PortRange, RouteTableAssociationState, SelfServicePortal, SubnetAssociation, Tag, TagSpecification, TargetConfigurationRequest, TransitGatewayAssociationState, TransitGatewayAttachmentResourceType, TransitGatewayMulticastDomainAssociations, TransitGatewayPeeringAttachment, TransitGatewayVpcAttachment, UnsuccessfulItem } from "./models_0";
|
|
2
|
+
import { AutoAcceptSharedAttachmentsValue, BlockDeviceMapping, CapacityReservationPreference, CapacityReservationTarget, DefaultRouteTableAssociationValue, DefaultRouteTablePropagationValue, DiskImageFormat, FleetLaunchTemplateConfigRequest, IcmpTypeCode, InstanceEventWindowTimeRangeRequest, InstanceInterruptionBehavior, InstanceRequirementsRequest, Ipam, IpamPool, IpamResourceTag, IpamScope, LaunchTemplate, ManagedPrefixList, NetworkInsightsAccessScopeContent, Placement, PlatformValues, RequestIpamResourceTag, ResponseLaunchTemplateData, RuleAction, ShutdownBehavior, SpotInstanceType, SubnetCidrReservation, TargetCapacitySpecificationRequest, TargetCapacityUnitType, TrafficDirection, TrafficMirrorFilter, TrafficMirrorFilterRule, TrafficMirrorNetworkService, TrafficMirrorPortRangeRequest, TrafficMirrorRuleAction, TrafficMirrorSession, TransitGateway, VolumeType, VpnEcmpSupportValue } from "./models_1";
|
|
3
3
|
import { Filter, IKEVersionsRequestListValue, InstanceTagNotificationAttribute, IpamPoolCidr, PayerResponsibility, Phase1DHGroupNumbersRequestListValue, Phase1EncryptionAlgorithmsRequestListValue, Phase1IntegrityAlgorithmsRequestListValue, Phase2DHGroupNumbersRequestListValue, Phase2EncryptionAlgorithmsRequestListValue, Phase2IntegrityAlgorithmsRequestListValue, TransitGatewayPrefixListReference, TransitGatewayRoute, VpnConnection } from "./models_2";
|
|
4
|
-
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange,
|
|
5
|
-
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification,
|
|
4
|
+
import { AnalysisStatus, ArchitectureType, ArchitectureValues, AttributeBooleanValue, BootModeValues, ConversionTask, FpgaImageAttribute, FpgaImageAttributeName, HttpTokensState, ImportImageLicenseConfigurationResponse, InstanceAttributeName, InstanceMetadataEndpointState, InstanceMetadataOptionsResponse, InstanceMetadataProtocolState, InstanceMetadataTagsState, InstanceStatusEvent, LaunchPermission, Monitoring, PermissionGroup, PublicIpv4PoolRange, SnapshotDetail, SnapshotTaskDetail, VirtualizationType } from "./models_3";
|
|
5
|
+
import { CreateVolumePermission, ExcessCapacityTerminationPolicy, InstanceFamilyCreditSpecification, InstanceNetworkInterfaceSpecification, LaunchTemplateConfig, Purchase, ReservedInstancesConfiguration, RunInstancesMonitoringEnabled, ScheduledInstance, SnapshotAttributeName, SpotFleetRequestConfigData, SpotInstanceRequest, SpotPlacement, TransitGatewayPropagationState, UnlimitedSupportedInstanceFamily, VolumeModification } from "./models_4";
|
|
6
|
+
/**
|
|
7
|
+
* <p>The list of instance types with the specified instance attributes.</p>
|
|
8
|
+
*/
|
|
9
|
+
export interface InstanceTypeInfoFromInstanceRequirements {
|
|
10
|
+
/**
|
|
11
|
+
* <p>The matching instance type.</p>
|
|
12
|
+
*/
|
|
13
|
+
InstanceType?: string;
|
|
14
|
+
}
|
|
15
|
+
export declare namespace InstanceTypeInfoFromInstanceRequirements {
|
|
16
|
+
/**
|
|
17
|
+
* @internal
|
|
18
|
+
*/
|
|
19
|
+
const filterSensitiveLog: (obj: InstanceTypeInfoFromInstanceRequirements) => any;
|
|
20
|
+
}
|
|
21
|
+
export interface GetInstanceTypesFromInstanceRequirementsResult {
|
|
22
|
+
/**
|
|
23
|
+
* <p>The instance types with the specified instance attributes.</p>
|
|
24
|
+
*/
|
|
25
|
+
InstanceTypes?: InstanceTypeInfoFromInstanceRequirements[];
|
|
26
|
+
/**
|
|
27
|
+
* <p>The token for the next set of results.</p>
|
|
28
|
+
*/
|
|
29
|
+
NextToken?: string;
|
|
30
|
+
}
|
|
31
|
+
export declare namespace GetInstanceTypesFromInstanceRequirementsResult {
|
|
32
|
+
/**
|
|
33
|
+
* @internal
|
|
34
|
+
*/
|
|
35
|
+
const filterSensitiveLog: (obj: GetInstanceTypesFromInstanceRequirementsResult) => any;
|
|
36
|
+
}
|
|
37
|
+
export interface GetIpamAddressHistoryRequest {
|
|
38
|
+
/**
|
|
39
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
40
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
41
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
42
|
+
*/
|
|
43
|
+
DryRun?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The CIDR you want the history of. The CIDR can be an IPv4 or IPv6 IP address range.
|
|
46
|
+
* If you enter a /16 IPv4 CIDR, you will get records that match it exactly. You will not get records for any subnets within the /16 CIDR.</p>
|
|
47
|
+
*/
|
|
48
|
+
Cidr: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* <p>The ID of the IPAM scope that the CIDR is in.</p>
|
|
51
|
+
*/
|
|
52
|
+
IpamScopeId: string | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* <p>The ID of the VPC you want your history records filtered by.</p>
|
|
55
|
+
*/
|
|
56
|
+
VpcId?: string;
|
|
57
|
+
/**
|
|
58
|
+
* <p>The start of the time period for which you are looking for history. If you omit this option, it will default to the value of EndTime.</p>
|
|
59
|
+
*/
|
|
60
|
+
StartTime?: Date;
|
|
61
|
+
/**
|
|
62
|
+
* <p>The end of the time period for which you are looking for history. If you omit this option, it will default to the current time.</p>
|
|
63
|
+
*/
|
|
64
|
+
EndTime?: Date;
|
|
65
|
+
/**
|
|
66
|
+
* <p>The maximum number of historical results you would like returned per page. Defaults to 100.</p>
|
|
67
|
+
*/
|
|
68
|
+
MaxResults?: number;
|
|
69
|
+
/**
|
|
70
|
+
* <p>The token for the next page of results.</p>
|
|
71
|
+
*/
|
|
72
|
+
NextToken?: string;
|
|
73
|
+
}
|
|
74
|
+
export declare namespace GetIpamAddressHistoryRequest {
|
|
75
|
+
/**
|
|
76
|
+
* @internal
|
|
77
|
+
*/
|
|
78
|
+
const filterSensitiveLog: (obj: GetIpamAddressHistoryRequest) => any;
|
|
79
|
+
}
|
|
80
|
+
export declare enum IpamComplianceStatus {
|
|
81
|
+
compliant = "compliant",
|
|
82
|
+
ignored = "ignored",
|
|
83
|
+
noncompliant = "noncompliant",
|
|
84
|
+
unmanaged = "unmanaged"
|
|
85
|
+
}
|
|
86
|
+
export declare enum IpamOverlapStatus {
|
|
87
|
+
ignored = "ignored",
|
|
88
|
+
nonoverlapping = "nonoverlapping",
|
|
89
|
+
overlapping = "overlapping"
|
|
90
|
+
}
|
|
91
|
+
export declare enum IpamAddressHistoryResourceType {
|
|
92
|
+
eip = "eip",
|
|
93
|
+
instance = "instance",
|
|
94
|
+
network_interface = "network-interface",
|
|
95
|
+
subnet = "subnet",
|
|
96
|
+
vpc = "vpc"
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* <p>The historical record of a CIDR within an IPAM scope. For more information, see <a href="/vpc/latest/ipam/view-history-cidr-ipam.html">View the history of IP addresses</a> in the <i>Amazon VPC IPAM User Guide</i>.
|
|
100
|
+
* </p>
|
|
101
|
+
*/
|
|
102
|
+
export interface IpamAddressHistoryRecord {
|
|
103
|
+
/**
|
|
104
|
+
* <p>The ID of the resource owner.</p>
|
|
105
|
+
*/
|
|
106
|
+
ResourceOwnerId?: string;
|
|
107
|
+
/**
|
|
108
|
+
* <p>The Amazon Web Services Region of the resource.</p>
|
|
109
|
+
*/
|
|
110
|
+
ResourceRegion?: string;
|
|
111
|
+
/**
|
|
112
|
+
* <p>The type of the resource.</p>
|
|
113
|
+
*/
|
|
114
|
+
ResourceType?: IpamAddressHistoryResourceType | string;
|
|
115
|
+
/**
|
|
116
|
+
* <p>The ID of the resource.</p>
|
|
117
|
+
*/
|
|
118
|
+
ResourceId?: string;
|
|
119
|
+
/**
|
|
120
|
+
* <p>The CIDR of the resource.</p>
|
|
121
|
+
*/
|
|
122
|
+
ResourceCidr?: string;
|
|
123
|
+
/**
|
|
124
|
+
* <p>The name of the resource.</p>
|
|
125
|
+
*/
|
|
126
|
+
ResourceName?: string;
|
|
127
|
+
/**
|
|
128
|
+
* <p>The compliance status of a resource. For more information on compliance statuses, see <a href="/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
129
|
+
*/
|
|
130
|
+
ResourceComplianceStatus?: IpamComplianceStatus | string;
|
|
131
|
+
/**
|
|
132
|
+
* <p>The overlap status of an IPAM resource. The overlap status tells you if the CIDR for a resource overlaps with another CIDR in the scope. For more information on overlap statuses, see <a href="/vpc/latest/ipam/monitor-cidr-compliance-ipam.html">Monitor CIDR usage by resource</a> in the <i>Amazon VPC IPAM User Guide</i>.</p>
|
|
133
|
+
*/
|
|
134
|
+
ResourceOverlapStatus?: IpamOverlapStatus | string;
|
|
135
|
+
/**
|
|
136
|
+
* <p>The VPC ID of the resource.</p>
|
|
137
|
+
*/
|
|
138
|
+
VpcId?: string;
|
|
139
|
+
/**
|
|
140
|
+
* <p>Sampled start time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the start time may have occurred before this specific time.</p>
|
|
141
|
+
*/
|
|
142
|
+
SampledStartTime?: Date;
|
|
143
|
+
/**
|
|
144
|
+
* <p>Sampled end time of the resource-to-CIDR association within the IPAM scope. Changes are picked up in periodic snapshots, so the end time may have occurred before this specific time.</p>
|
|
145
|
+
*/
|
|
146
|
+
SampledEndTime?: Date;
|
|
147
|
+
}
|
|
148
|
+
export declare namespace IpamAddressHistoryRecord {
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
const filterSensitiveLog: (obj: IpamAddressHistoryRecord) => any;
|
|
153
|
+
}
|
|
154
|
+
export interface GetIpamAddressHistoryResult {
|
|
155
|
+
/**
|
|
156
|
+
* <p>A historical record for a CIDR within an IPAM scope. If the CIDR is associated with an EC2 instance, you will see an object in the response for the instance and one for the network interface.</p>
|
|
157
|
+
*/
|
|
158
|
+
HistoryRecords?: IpamAddressHistoryRecord[];
|
|
159
|
+
/**
|
|
160
|
+
* <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>
|
|
161
|
+
*/
|
|
162
|
+
NextToken?: string;
|
|
163
|
+
}
|
|
164
|
+
export declare namespace GetIpamAddressHistoryResult {
|
|
165
|
+
/**
|
|
166
|
+
* @internal
|
|
167
|
+
*/
|
|
168
|
+
const filterSensitiveLog: (obj: GetIpamAddressHistoryResult) => any;
|
|
169
|
+
}
|
|
170
|
+
export interface GetIpamPoolAllocationsRequest {
|
|
171
|
+
/**
|
|
172
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
173
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
174
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
175
|
+
*/
|
|
176
|
+
DryRun?: boolean;
|
|
177
|
+
/**
|
|
178
|
+
* <p>The ID of the IPAM pool you want to see the allocations for.</p>
|
|
179
|
+
*/
|
|
180
|
+
IpamPoolId: string | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* <p>The ID of the allocation.</p>
|
|
183
|
+
*/
|
|
184
|
+
IpamPoolAllocationId?: string;
|
|
185
|
+
/**
|
|
186
|
+
* <p>One or more filters for the request. For more information about filtering, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-filter.html">Filtering CLI output</a>.</p>
|
|
187
|
+
*/
|
|
188
|
+
Filters?: Filter[];
|
|
189
|
+
/**
|
|
190
|
+
* <p>The maximum number of results you would like returned per page.</p>
|
|
191
|
+
*/
|
|
192
|
+
MaxResults?: number;
|
|
193
|
+
/**
|
|
194
|
+
* <p>The token for the next page of results.</p>
|
|
195
|
+
*/
|
|
196
|
+
NextToken?: string;
|
|
197
|
+
}
|
|
198
|
+
export declare namespace GetIpamPoolAllocationsRequest {
|
|
199
|
+
/**
|
|
200
|
+
* @internal
|
|
201
|
+
*/
|
|
202
|
+
const filterSensitiveLog: (obj: GetIpamPoolAllocationsRequest) => any;
|
|
203
|
+
}
|
|
204
|
+
export interface GetIpamPoolAllocationsResult {
|
|
205
|
+
/**
|
|
206
|
+
* <p>The IPAM pool allocations you want information on.</p>
|
|
207
|
+
*/
|
|
208
|
+
IpamPoolAllocations?: IpamPoolAllocation[];
|
|
209
|
+
/**
|
|
210
|
+
* <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>
|
|
211
|
+
*/
|
|
212
|
+
NextToken?: string;
|
|
213
|
+
}
|
|
214
|
+
export declare namespace GetIpamPoolAllocationsResult {
|
|
215
|
+
/**
|
|
216
|
+
* @internal
|
|
217
|
+
*/
|
|
218
|
+
const filterSensitiveLog: (obj: GetIpamPoolAllocationsResult) => any;
|
|
219
|
+
}
|
|
220
|
+
export interface GetIpamPoolCidrsRequest {
|
|
221
|
+
/**
|
|
222
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
223
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
224
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
225
|
+
*/
|
|
226
|
+
DryRun?: boolean;
|
|
227
|
+
/**
|
|
228
|
+
* <p>The ID of the IPAM pool you want the CIDR for.</p>
|
|
229
|
+
*/
|
|
230
|
+
IpamPoolId: string | undefined;
|
|
231
|
+
/**
|
|
232
|
+
* <p>One or more filters for the request. For more information about filtering, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-filter.html">Filtering CLI output</a>.</p>
|
|
233
|
+
*/
|
|
234
|
+
Filters?: Filter[];
|
|
235
|
+
/**
|
|
236
|
+
* <p>The maximum number of results to return in the request.</p>
|
|
237
|
+
*/
|
|
238
|
+
MaxResults?: number;
|
|
239
|
+
/**
|
|
240
|
+
* <p>The token for the next page of results.</p>
|
|
241
|
+
*/
|
|
242
|
+
NextToken?: string;
|
|
243
|
+
}
|
|
244
|
+
export declare namespace GetIpamPoolCidrsRequest {
|
|
245
|
+
/**
|
|
246
|
+
* @internal
|
|
247
|
+
*/
|
|
248
|
+
const filterSensitiveLog: (obj: GetIpamPoolCidrsRequest) => any;
|
|
249
|
+
}
|
|
250
|
+
export interface GetIpamPoolCidrsResult {
|
|
251
|
+
/**
|
|
252
|
+
* <p>Information about the CIDRs provisioned to an IPAM pool.</p>
|
|
253
|
+
*/
|
|
254
|
+
IpamPoolCidrs?: IpamPoolCidr[];
|
|
255
|
+
/**
|
|
256
|
+
* <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>
|
|
257
|
+
*/
|
|
258
|
+
NextToken?: string;
|
|
259
|
+
}
|
|
260
|
+
export declare namespace GetIpamPoolCidrsResult {
|
|
261
|
+
/**
|
|
262
|
+
* @internal
|
|
263
|
+
*/
|
|
264
|
+
const filterSensitiveLog: (obj: GetIpamPoolCidrsResult) => any;
|
|
265
|
+
}
|
|
266
|
+
export declare enum IpamResourceType {
|
|
267
|
+
eip = "eip",
|
|
268
|
+
ipv6_pool = "ipv6-pool",
|
|
269
|
+
public_ipv4_pool = "public-ipv4-pool",
|
|
270
|
+
subnet = "subnet",
|
|
271
|
+
vpc = "vpc"
|
|
272
|
+
}
|
|
273
|
+
export interface GetIpamResourceCidrsRequest {
|
|
274
|
+
/**
|
|
275
|
+
* <p>A check for whether you have the required permissions for the action without actually making the request
|
|
276
|
+
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
277
|
+
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
278
|
+
*/
|
|
279
|
+
DryRun?: boolean;
|
|
280
|
+
/**
|
|
281
|
+
* <p>One or more filters for the request. For more information about filtering, see <a href="https://docs.aws.amazon.com/cli/latest/userguide/cli-usage-filter.html">Filtering CLI output</a>.</p>
|
|
282
|
+
*/
|
|
283
|
+
Filters?: Filter[];
|
|
284
|
+
/**
|
|
285
|
+
* <p>The maximum number of results to return in the request.</p>
|
|
286
|
+
*/
|
|
287
|
+
MaxResults?: number;
|
|
288
|
+
/**
|
|
289
|
+
* <p>The token for the next page of results.</p>
|
|
290
|
+
*/
|
|
291
|
+
NextToken?: string;
|
|
292
|
+
/**
|
|
293
|
+
* <p>The ID of the scope that the resource is in.</p>
|
|
294
|
+
*/
|
|
295
|
+
IpamScopeId: string | undefined;
|
|
296
|
+
/**
|
|
297
|
+
* <p>The ID of the IPAM pool that the resource is in.</p>
|
|
298
|
+
*/
|
|
299
|
+
IpamPoolId?: string;
|
|
300
|
+
/**
|
|
301
|
+
* <p>The ID of the resource.</p>
|
|
302
|
+
*/
|
|
303
|
+
ResourceId?: string;
|
|
304
|
+
/**
|
|
305
|
+
* <p>The resource type.</p>
|
|
306
|
+
*/
|
|
307
|
+
ResourceType?: IpamResourceType | string;
|
|
308
|
+
/**
|
|
309
|
+
* <p>A tag on an IPAM resource.</p>
|
|
310
|
+
*/
|
|
311
|
+
ResourceTag?: RequestIpamResourceTag;
|
|
312
|
+
/**
|
|
313
|
+
* <p>The ID of the Amazon Web Services account that owns the resource.</p>
|
|
314
|
+
*/
|
|
315
|
+
ResourceOwner?: string;
|
|
316
|
+
}
|
|
317
|
+
export declare namespace GetIpamResourceCidrsRequest {
|
|
318
|
+
/**
|
|
319
|
+
* @internal
|
|
320
|
+
*/
|
|
321
|
+
const filterSensitiveLog: (obj: GetIpamResourceCidrsRequest) => any;
|
|
322
|
+
}
|
|
323
|
+
export declare enum IpamManagementState {
|
|
324
|
+
ignored = "ignored",
|
|
325
|
+
managed = "managed",
|
|
326
|
+
unmanaged = "unmanaged"
|
|
327
|
+
}
|
|
6
328
|
/**
|
|
7
329
|
* <p>The CIDR for an IPAM resource.</p>
|
|
8
330
|
*/
|
|
@@ -2411,6 +2733,8 @@ export interface ModifyClientVpnEndpointRequest {
|
|
|
2411
2733
|
* <p>The options for managing connection authorization for new client connections.</p>
|
|
2412
2734
|
*/
|
|
2413
2735
|
ClientConnectOptions?: ClientConnectOptions;
|
|
2736
|
+
SessionTimeoutHours?: number;
|
|
2737
|
+
ClientLoginBannerOptions?: ClientLoginBannerOptions;
|
|
2414
2738
|
}
|
|
2415
2739
|
export declare namespace ModifyClientVpnEndpointRequest {
|
|
2416
2740
|
/**
|
|
@@ -2852,8 +3176,8 @@ export interface ModifyImageAttributeRequest {
|
|
|
2852
3176
|
Value?: string;
|
|
2853
3177
|
/**
|
|
2854
3178
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
2855
|
-
*
|
|
2856
|
-
*
|
|
3179
|
+
* and provides an error response. If you have the required permissions, the error response is
|
|
3180
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
2857
3181
|
*/
|
|
2858
3182
|
DryRun?: boolean;
|
|
2859
3183
|
/**
|
|
@@ -6104,8 +6428,8 @@ export interface RegisterImageRequest {
|
|
|
6104
6428
|
Description?: string;
|
|
6105
6429
|
/**
|
|
6106
6430
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
6107
|
-
*
|
|
6108
|
-
*
|
|
6431
|
+
* and provides an error response. If you have the required permissions, the error response is
|
|
6432
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
6109
6433
|
*/
|
|
6110
6434
|
DryRun?: boolean;
|
|
6111
6435
|
/**
|
|
@@ -7326,8 +7650,8 @@ export interface ResetImageAttributeRequest {
|
|
|
7326
7650
|
ImageId: string | undefined;
|
|
7327
7651
|
/**
|
|
7328
7652
|
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7329
|
-
*
|
|
7330
|
-
*
|
|
7653
|
+
* and provides an error response. If you have the required permissions, the error response is
|
|
7654
|
+
* <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7331
7655
|
*/
|
|
7332
7656
|
DryRun?: boolean;
|
|
7333
7657
|
}
|
|
@@ -7412,413 +7736,3 @@ export declare namespace ResetSnapshotAttributeRequest {
|
|
|
7412
7736
|
*/
|
|
7413
7737
|
const filterSensitiveLog: (obj: ResetSnapshotAttributeRequest) => any;
|
|
7414
7738
|
}
|
|
7415
|
-
export interface RestoreAddressToClassicRequest {
|
|
7416
|
-
/**
|
|
7417
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7418
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7419
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7420
|
-
*/
|
|
7421
|
-
DryRun?: boolean;
|
|
7422
|
-
/**
|
|
7423
|
-
* <p>The Elastic IP address.</p>
|
|
7424
|
-
*/
|
|
7425
|
-
PublicIp: string | undefined;
|
|
7426
|
-
}
|
|
7427
|
-
export declare namespace RestoreAddressToClassicRequest {
|
|
7428
|
-
/**
|
|
7429
|
-
* @internal
|
|
7430
|
-
*/
|
|
7431
|
-
const filterSensitiveLog: (obj: RestoreAddressToClassicRequest) => any;
|
|
7432
|
-
}
|
|
7433
|
-
export interface RestoreAddressToClassicResult {
|
|
7434
|
-
/**
|
|
7435
|
-
* <p>The Elastic IP address.</p>
|
|
7436
|
-
*/
|
|
7437
|
-
PublicIp?: string;
|
|
7438
|
-
/**
|
|
7439
|
-
* <p>The move status for the IP address.</p>
|
|
7440
|
-
*/
|
|
7441
|
-
Status?: Status | string;
|
|
7442
|
-
}
|
|
7443
|
-
export declare namespace RestoreAddressToClassicResult {
|
|
7444
|
-
/**
|
|
7445
|
-
* @internal
|
|
7446
|
-
*/
|
|
7447
|
-
const filterSensitiveLog: (obj: RestoreAddressToClassicResult) => any;
|
|
7448
|
-
}
|
|
7449
|
-
export interface RestoreManagedPrefixListVersionRequest {
|
|
7450
|
-
/**
|
|
7451
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7452
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7453
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7454
|
-
*/
|
|
7455
|
-
DryRun?: boolean;
|
|
7456
|
-
/**
|
|
7457
|
-
* <p>The ID of the prefix list.</p>
|
|
7458
|
-
*/
|
|
7459
|
-
PrefixListId: string | undefined;
|
|
7460
|
-
/**
|
|
7461
|
-
* <p>The version to restore.</p>
|
|
7462
|
-
*/
|
|
7463
|
-
PreviousVersion: number | undefined;
|
|
7464
|
-
/**
|
|
7465
|
-
* <p>The current version number for the prefix list.</p>
|
|
7466
|
-
*/
|
|
7467
|
-
CurrentVersion: number | undefined;
|
|
7468
|
-
}
|
|
7469
|
-
export declare namespace RestoreManagedPrefixListVersionRequest {
|
|
7470
|
-
/**
|
|
7471
|
-
* @internal
|
|
7472
|
-
*/
|
|
7473
|
-
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionRequest) => any;
|
|
7474
|
-
}
|
|
7475
|
-
export interface RestoreManagedPrefixListVersionResult {
|
|
7476
|
-
/**
|
|
7477
|
-
* <p>Information about the prefix list.</p>
|
|
7478
|
-
*/
|
|
7479
|
-
PrefixList?: ManagedPrefixList;
|
|
7480
|
-
}
|
|
7481
|
-
export declare namespace RestoreManagedPrefixListVersionResult {
|
|
7482
|
-
/**
|
|
7483
|
-
* @internal
|
|
7484
|
-
*/
|
|
7485
|
-
const filterSensitiveLog: (obj: RestoreManagedPrefixListVersionResult) => any;
|
|
7486
|
-
}
|
|
7487
|
-
export interface RestoreSnapshotFromRecycleBinRequest {
|
|
7488
|
-
/**
|
|
7489
|
-
* <p>The ID of the snapshot to restore.</p>
|
|
7490
|
-
*/
|
|
7491
|
-
SnapshotId: string | undefined;
|
|
7492
|
-
/**
|
|
7493
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7494
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7495
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7496
|
-
*/
|
|
7497
|
-
DryRun?: boolean;
|
|
7498
|
-
}
|
|
7499
|
-
export declare namespace RestoreSnapshotFromRecycleBinRequest {
|
|
7500
|
-
/**
|
|
7501
|
-
* @internal
|
|
7502
|
-
*/
|
|
7503
|
-
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinRequest) => any;
|
|
7504
|
-
}
|
|
7505
|
-
export interface RestoreSnapshotFromRecycleBinResult {
|
|
7506
|
-
/**
|
|
7507
|
-
* <p>The ID of the snapshot.</p>
|
|
7508
|
-
*/
|
|
7509
|
-
SnapshotId?: string;
|
|
7510
|
-
/**
|
|
7511
|
-
* <p>The ARN of the Outpost on which the snapshot is stored. For more information, see <a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/snapshots-outposts.html">Amazon EBS local snapshots on Outposts</a> in the
|
|
7512
|
-
* <i>Amazon Elastic Compute Cloud User Guide</i>.</p>
|
|
7513
|
-
*/
|
|
7514
|
-
OutpostArn?: string;
|
|
7515
|
-
/**
|
|
7516
|
-
* <p>The description for the snapshot.</p>
|
|
7517
|
-
*/
|
|
7518
|
-
Description?: string;
|
|
7519
|
-
/**
|
|
7520
|
-
* <p>Indicates whether the snapshot is encrypted.</p>
|
|
7521
|
-
*/
|
|
7522
|
-
Encrypted?: boolean;
|
|
7523
|
-
/**
|
|
7524
|
-
* <p>The ID of the Amazon Web Services account that owns the EBS snapshot.</p>
|
|
7525
|
-
*/
|
|
7526
|
-
OwnerId?: string;
|
|
7527
|
-
/**
|
|
7528
|
-
* <p>The progress of the snapshot, as a percentage.</p>
|
|
7529
|
-
*/
|
|
7530
|
-
Progress?: string;
|
|
7531
|
-
/**
|
|
7532
|
-
* <p>The time stamp when the snapshot was initiated.</p>
|
|
7533
|
-
*/
|
|
7534
|
-
StartTime?: Date;
|
|
7535
|
-
/**
|
|
7536
|
-
* <p>The state of the snapshot.</p>
|
|
7537
|
-
*/
|
|
7538
|
-
State?: SnapshotState | string;
|
|
7539
|
-
/**
|
|
7540
|
-
* <p>The ID of the volume that was used to create the snapshot.</p>
|
|
7541
|
-
*/
|
|
7542
|
-
VolumeId?: string;
|
|
7543
|
-
/**
|
|
7544
|
-
* <p>The size of the volume, in GiB.</p>
|
|
7545
|
-
*/
|
|
7546
|
-
VolumeSize?: number;
|
|
7547
|
-
}
|
|
7548
|
-
export declare namespace RestoreSnapshotFromRecycleBinResult {
|
|
7549
|
-
/**
|
|
7550
|
-
* @internal
|
|
7551
|
-
*/
|
|
7552
|
-
const filterSensitiveLog: (obj: RestoreSnapshotFromRecycleBinResult) => any;
|
|
7553
|
-
}
|
|
7554
|
-
export interface RestoreSnapshotTierRequest {
|
|
7555
|
-
/**
|
|
7556
|
-
* <p>The ID of the snapshot to restore.</p>
|
|
7557
|
-
*/
|
|
7558
|
-
SnapshotId: string | undefined;
|
|
7559
|
-
/**
|
|
7560
|
-
* <p>Specifies the number of days for which to temporarily restore an archived snapshot.
|
|
7561
|
-
* Required for temporary restores only. The snapshot will be automatically re-archived
|
|
7562
|
-
* after this period.</p>
|
|
7563
|
-
* <p>To temporarily restore an archived snapshot, specify the number of days and omit
|
|
7564
|
-
* the <b>PermanentRestore</b> parameter or set it to
|
|
7565
|
-
* <code>false</code>.</p>
|
|
7566
|
-
*/
|
|
7567
|
-
TemporaryRestoreDays?: number;
|
|
7568
|
-
/**
|
|
7569
|
-
* <p>Indicates whether to permanently restore an archived snapshot. To permanently restore
|
|
7570
|
-
* an archived snapshot, specify <code>true</code> and omit the
|
|
7571
|
-
* <b>RestoreSnapshotTierRequest$TemporaryRestoreDays</b> parameter.</p>
|
|
7572
|
-
*/
|
|
7573
|
-
PermanentRestore?: boolean;
|
|
7574
|
-
/**
|
|
7575
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7576
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7577
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7578
|
-
*/
|
|
7579
|
-
DryRun?: boolean;
|
|
7580
|
-
}
|
|
7581
|
-
export declare namespace RestoreSnapshotTierRequest {
|
|
7582
|
-
/**
|
|
7583
|
-
* @internal
|
|
7584
|
-
*/
|
|
7585
|
-
const filterSensitiveLog: (obj: RestoreSnapshotTierRequest) => any;
|
|
7586
|
-
}
|
|
7587
|
-
export interface RestoreSnapshotTierResult {
|
|
7588
|
-
/**
|
|
7589
|
-
* <p>The ID of the snapshot.</p>
|
|
7590
|
-
*/
|
|
7591
|
-
SnapshotId?: string;
|
|
7592
|
-
/**
|
|
7593
|
-
* <p>The date and time when the snapshot restore process started.</p>
|
|
7594
|
-
*/
|
|
7595
|
-
RestoreStartTime?: Date;
|
|
7596
|
-
/**
|
|
7597
|
-
* <p>For temporary restores only. The number of days for which the archived snapshot
|
|
7598
|
-
* is temporarily restored.</p>
|
|
7599
|
-
*/
|
|
7600
|
-
RestoreDuration?: number;
|
|
7601
|
-
/**
|
|
7602
|
-
* <p>Indicates whether the snapshot is permanently restored. <code>true</code> indicates a permanent
|
|
7603
|
-
* restore. <code>false</code> indicates a temporary restore.</p>
|
|
7604
|
-
*/
|
|
7605
|
-
IsPermanentRestore?: boolean;
|
|
7606
|
-
}
|
|
7607
|
-
export declare namespace RestoreSnapshotTierResult {
|
|
7608
|
-
/**
|
|
7609
|
-
* @internal
|
|
7610
|
-
*/
|
|
7611
|
-
const filterSensitiveLog: (obj: RestoreSnapshotTierResult) => any;
|
|
7612
|
-
}
|
|
7613
|
-
export interface RevokeClientVpnIngressRequest {
|
|
7614
|
-
/**
|
|
7615
|
-
* <p>The ID of the Client VPN endpoint with which the authorization rule is associated.</p>
|
|
7616
|
-
*/
|
|
7617
|
-
ClientVpnEndpointId: string | undefined;
|
|
7618
|
-
/**
|
|
7619
|
-
* <p>The IPv4 address range, in CIDR notation, of the network for which access is being removed.</p>
|
|
7620
|
-
*/
|
|
7621
|
-
TargetNetworkCidr: string | undefined;
|
|
7622
|
-
/**
|
|
7623
|
-
* <p>The ID of the Active Directory group for which to revoke access. </p>
|
|
7624
|
-
*/
|
|
7625
|
-
AccessGroupId?: string;
|
|
7626
|
-
/**
|
|
7627
|
-
* <p>Indicates whether access should be revoked for all clients.</p>
|
|
7628
|
-
*/
|
|
7629
|
-
RevokeAllGroups?: boolean;
|
|
7630
|
-
/**
|
|
7631
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>. Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7632
|
-
*/
|
|
7633
|
-
DryRun?: boolean;
|
|
7634
|
-
}
|
|
7635
|
-
export declare namespace RevokeClientVpnIngressRequest {
|
|
7636
|
-
/**
|
|
7637
|
-
* @internal
|
|
7638
|
-
*/
|
|
7639
|
-
const filterSensitiveLog: (obj: RevokeClientVpnIngressRequest) => any;
|
|
7640
|
-
}
|
|
7641
|
-
export interface RevokeClientVpnIngressResult {
|
|
7642
|
-
/**
|
|
7643
|
-
* <p>The current state of the authorization rule.</p>
|
|
7644
|
-
*/
|
|
7645
|
-
Status?: ClientVpnAuthorizationRuleStatus;
|
|
7646
|
-
}
|
|
7647
|
-
export declare namespace RevokeClientVpnIngressResult {
|
|
7648
|
-
/**
|
|
7649
|
-
* @internal
|
|
7650
|
-
*/
|
|
7651
|
-
const filterSensitiveLog: (obj: RevokeClientVpnIngressResult) => any;
|
|
7652
|
-
}
|
|
7653
|
-
export interface RevokeSecurityGroupEgressRequest {
|
|
7654
|
-
/**
|
|
7655
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7656
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7657
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7658
|
-
*/
|
|
7659
|
-
DryRun?: boolean;
|
|
7660
|
-
/**
|
|
7661
|
-
* <p>The ID of the security group.</p>
|
|
7662
|
-
*/
|
|
7663
|
-
GroupId: string | undefined;
|
|
7664
|
-
/**
|
|
7665
|
-
* <p>The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions.</p>
|
|
7666
|
-
*/
|
|
7667
|
-
IpPermissions?: IpPermission[];
|
|
7668
|
-
/**
|
|
7669
|
-
* <p>The IDs of the security group rules.</p>
|
|
7670
|
-
*/
|
|
7671
|
-
SecurityGroupRuleIds?: string[];
|
|
7672
|
-
/**
|
|
7673
|
-
* <p>Not supported. Use a set of IP permissions to specify the CIDR.</p>
|
|
7674
|
-
*/
|
|
7675
|
-
CidrIp?: string;
|
|
7676
|
-
/**
|
|
7677
|
-
* <p>Not supported. Use a set of IP permissions to specify the port.</p>
|
|
7678
|
-
*/
|
|
7679
|
-
FromPort?: number;
|
|
7680
|
-
/**
|
|
7681
|
-
* <p>Not supported. Use a set of IP permissions to specify the protocol name or
|
|
7682
|
-
* number.</p>
|
|
7683
|
-
*/
|
|
7684
|
-
IpProtocol?: string;
|
|
7685
|
-
/**
|
|
7686
|
-
* <p>Not supported. Use a set of IP permissions to specify the port.</p>
|
|
7687
|
-
*/
|
|
7688
|
-
ToPort?: number;
|
|
7689
|
-
/**
|
|
7690
|
-
* <p>Not supported. Use a set of IP permissions to specify a
|
|
7691
|
-
* destination security group.</p>
|
|
7692
|
-
*/
|
|
7693
|
-
SourceSecurityGroupName?: string;
|
|
7694
|
-
/**
|
|
7695
|
-
* <p>Not supported. Use a set of IP permissions to specify a destination security
|
|
7696
|
-
* group.</p>
|
|
7697
|
-
*/
|
|
7698
|
-
SourceSecurityGroupOwnerId?: string;
|
|
7699
|
-
}
|
|
7700
|
-
export declare namespace RevokeSecurityGroupEgressRequest {
|
|
7701
|
-
/**
|
|
7702
|
-
* @internal
|
|
7703
|
-
*/
|
|
7704
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressRequest) => any;
|
|
7705
|
-
}
|
|
7706
|
-
export interface RevokeSecurityGroupEgressResult {
|
|
7707
|
-
/**
|
|
7708
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
7709
|
-
*/
|
|
7710
|
-
Return?: boolean;
|
|
7711
|
-
/**
|
|
7712
|
-
* <p>The outbound rules that were unknown to the service. In some cases,
|
|
7713
|
-
* <code>unknownIpPermissionSet</code> might be in a different format from the request
|
|
7714
|
-
* parameter. </p>
|
|
7715
|
-
*/
|
|
7716
|
-
UnknownIpPermissions?: IpPermission[];
|
|
7717
|
-
}
|
|
7718
|
-
export declare namespace RevokeSecurityGroupEgressResult {
|
|
7719
|
-
/**
|
|
7720
|
-
* @internal
|
|
7721
|
-
*/
|
|
7722
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupEgressResult) => any;
|
|
7723
|
-
}
|
|
7724
|
-
export interface RevokeSecurityGroupIngressRequest {
|
|
7725
|
-
/**
|
|
7726
|
-
* <p>The CIDR IP address range. You can't specify this parameter when specifying a source security group.</p>
|
|
7727
|
-
*/
|
|
7728
|
-
CidrIp?: string;
|
|
7729
|
-
/**
|
|
7730
|
-
* <p>The start of port range for the TCP and UDP protocols, or an ICMP type number. For the ICMP type number,
|
|
7731
|
-
* use <code>-1</code> to specify all ICMP types.</p>
|
|
7732
|
-
*/
|
|
7733
|
-
FromPort?: number;
|
|
7734
|
-
/**
|
|
7735
|
-
* <p>The ID of the security group. You must specify either the security group ID or the
|
|
7736
|
-
* security group name in the request. For security groups in a nondefault VPC, you must
|
|
7737
|
-
* specify the security group ID.</p>
|
|
7738
|
-
*/
|
|
7739
|
-
GroupId?: string;
|
|
7740
|
-
/**
|
|
7741
|
-
* <p>[EC2-Classic, default VPC] The name of the security group. You must specify either the
|
|
7742
|
-
* security group ID or the security group name in the request.</p>
|
|
7743
|
-
*/
|
|
7744
|
-
GroupName?: string;
|
|
7745
|
-
/**
|
|
7746
|
-
* <p>The sets of IP permissions. You can't specify a source security group and a CIDR IP address range in the same set of permissions.</p>
|
|
7747
|
-
*/
|
|
7748
|
-
IpPermissions?: IpPermission[];
|
|
7749
|
-
/**
|
|
7750
|
-
* <p>The IP protocol name (<code>tcp</code>, <code>udp</code>, <code>icmp</code>) or number
|
|
7751
|
-
* (see <a href="http://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml">Protocol Numbers</a>).
|
|
7752
|
-
* Use <code>-1</code> to specify all.</p>
|
|
7753
|
-
*/
|
|
7754
|
-
IpProtocol?: string;
|
|
7755
|
-
/**
|
|
7756
|
-
* <p>[EC2-Classic, default VPC] The name of the source security group. You can't specify this parameter in combination with the following parameters: the CIDR IP address range, the start of the port range, the IP protocol, and the end of the port range. For EC2-VPC, the source security group must be in the same VPC. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.</p>
|
|
7757
|
-
*/
|
|
7758
|
-
SourceSecurityGroupName?: string;
|
|
7759
|
-
/**
|
|
7760
|
-
* <p>[EC2-Classic] The Amazon Web Services account ID of the source security group, if the source security group is in a different account. You can't specify this parameter in combination with the following parameters: the CIDR IP address range, the IP protocol, the start of the port range, and the end of the port range. To revoke a specific rule for an IP protocol and port range, use a set of IP permissions instead.</p>
|
|
7761
|
-
*/
|
|
7762
|
-
SourceSecurityGroupOwnerId?: string;
|
|
7763
|
-
/**
|
|
7764
|
-
* <p>The end of port range for the TCP and UDP protocols, or an ICMP code number. For the ICMP code number,
|
|
7765
|
-
* use <code>-1</code> to specify all ICMP codes for the ICMP type.</p>
|
|
7766
|
-
*/
|
|
7767
|
-
ToPort?: number;
|
|
7768
|
-
/**
|
|
7769
|
-
* <p>Checks whether you have the required permissions for the action, without actually making the request,
|
|
7770
|
-
* and provides an error response. If you have the required permissions, the error response is <code>DryRunOperation</code>.
|
|
7771
|
-
* Otherwise, it is <code>UnauthorizedOperation</code>.</p>
|
|
7772
|
-
*/
|
|
7773
|
-
DryRun?: boolean;
|
|
7774
|
-
/**
|
|
7775
|
-
* <p>The IDs of the security group rules.</p>
|
|
7776
|
-
*/
|
|
7777
|
-
SecurityGroupRuleIds?: string[];
|
|
7778
|
-
}
|
|
7779
|
-
export declare namespace RevokeSecurityGroupIngressRequest {
|
|
7780
|
-
/**
|
|
7781
|
-
* @internal
|
|
7782
|
-
*/
|
|
7783
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressRequest) => any;
|
|
7784
|
-
}
|
|
7785
|
-
export interface RevokeSecurityGroupIngressResult {
|
|
7786
|
-
/**
|
|
7787
|
-
* <p>Returns <code>true</code> if the request succeeds; otherwise, returns an error.</p>
|
|
7788
|
-
*/
|
|
7789
|
-
Return?: boolean;
|
|
7790
|
-
/**
|
|
7791
|
-
* <p>The inbound rules that were unknown to the service. In some cases,
|
|
7792
|
-
* <code>unknownIpPermissionSet</code> might be in a different format from the request
|
|
7793
|
-
* parameter. </p>
|
|
7794
|
-
*/
|
|
7795
|
-
UnknownIpPermissions?: IpPermission[];
|
|
7796
|
-
}
|
|
7797
|
-
export declare namespace RevokeSecurityGroupIngressResult {
|
|
7798
|
-
/**
|
|
7799
|
-
* @internal
|
|
7800
|
-
*/
|
|
7801
|
-
const filterSensitiveLog: (obj: RevokeSecurityGroupIngressResult) => any;
|
|
7802
|
-
}
|
|
7803
|
-
/**
|
|
7804
|
-
* <p>The CPU options for the instance. Both the core count and threads per core must be
|
|
7805
|
-
* specified in the request.</p>
|
|
7806
|
-
*/
|
|
7807
|
-
export interface CpuOptionsRequest {
|
|
7808
|
-
/**
|
|
7809
|
-
* <p>The number of CPU cores for the instance.</p>
|
|
7810
|
-
*/
|
|
7811
|
-
CoreCount?: number;
|
|
7812
|
-
/**
|
|
7813
|
-
* <p>The number of threads per CPU core. To disable multithreading for
|
|
7814
|
-
* the instance, specify a value of <code>1</code>. Otherwise, specify the default value of
|
|
7815
|
-
* <code>2</code>.</p>
|
|
7816
|
-
*/
|
|
7817
|
-
ThreadsPerCore?: number;
|
|
7818
|
-
}
|
|
7819
|
-
export declare namespace CpuOptionsRequest {
|
|
7820
|
-
/**
|
|
7821
|
-
* @internal
|
|
7822
|
-
*/
|
|
7823
|
-
const filterSensitiveLog: (obj: CpuOptionsRequest) => any;
|
|
7824
|
-
}
|