cdk-docker-image-deployment 0.0.197 → 0.0.199
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.examples.json +155 -0
- package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +70 -1
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +141 -50
- package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +160 -57
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -794
- package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +8 -4
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +389 -45
- package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
- package/node_modules/aws-sdk/apis/neptune-2014-10-31.min.json +130 -103
- package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +8 -1
- package/node_modules/aws-sdk/apis/workdocs-2016-05-01.min.json +234 -32
- package/node_modules/aws-sdk/apis/workdocs-2016-05-01.paginators.json +42 -0
- package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +88 -11
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +70 -0
- package/node_modules/aws-sdk/clients/cleanrooms.d.ts +82 -1
- package/node_modules/aws-sdk/clients/ec2.d.ts +257 -24
- package/node_modules/aws-sdk/clients/iotsitewise.d.ts +9 -1
- package/node_modules/aws-sdk/clients/mgn.d.ts +472 -1
- package/node_modules/aws-sdk/clients/neptune.d.ts +39 -1
- package/node_modules/aws-sdk/clients/s3outposts.d.ts +17 -1
- package/node_modules/aws-sdk/clients/workdocs.d.ts +196 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
- package/node_modules/aws-sdk/dist/aws-sdk.js +1381 -830
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +98 -98
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +7 -7
|
@@ -93,11 +93,11 @@ declare class EC2 extends Service {
|
|
|
93
93
|
*/
|
|
94
94
|
allocateHosts(callback?: (err: AWSError, data: EC2.Types.AllocateHostsResult) => void): Request<EC2.Types.AllocateHostsResult, AWSError>;
|
|
95
95
|
/**
|
|
96
|
-
* Allocate a CIDR from an IPAM pool. In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide.
|
|
96
|
+
* Allocate a CIDR from an IPAM pool. In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide. This action creates an allocation with strong consistency. The returned CIDR will not overlap with any other allocations from the same pool.
|
|
97
97
|
*/
|
|
98
98
|
allocateIpamPoolCidr(params: EC2.Types.AllocateIpamPoolCidrRequest, callback?: (err: AWSError, data: EC2.Types.AllocateIpamPoolCidrResult) => void): Request<EC2.Types.AllocateIpamPoolCidrResult, AWSError>;
|
|
99
99
|
/**
|
|
100
|
-
* Allocate a CIDR from an IPAM pool. In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide.
|
|
100
|
+
* Allocate a CIDR from an IPAM pool. In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource. For more information, see Allocate CIDRs in the Amazon VPC IPAM User Guide. This action creates an allocation with strong consistency. The returned CIDR will not overlap with any other allocations from the same pool.
|
|
101
101
|
*/
|
|
102
102
|
allocateIpamPoolCidr(callback?: (err: AWSError, data: EC2.Types.AllocateIpamPoolCidrResult) => void): Request<EC2.Types.AllocateIpamPoolCidrResult, AWSError>;
|
|
103
103
|
/**
|
|
@@ -725,11 +725,11 @@ declare class EC2 extends Service {
|
|
|
725
725
|
*/
|
|
726
726
|
createNetworkInsightsAccessScope(callback?: (err: AWSError, data: EC2.Types.CreateNetworkInsightsAccessScopeResult) => void): Request<EC2.Types.CreateNetworkInsightsAccessScopeResult, AWSError>;
|
|
727
727
|
/**
|
|
728
|
-
* Creates a path to analyze for reachability. Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see
|
|
728
|
+
* Creates a path to analyze for reachability. Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer Guide.
|
|
729
729
|
*/
|
|
730
730
|
createNetworkInsightsPath(params: EC2.Types.CreateNetworkInsightsPathRequest, callback?: (err: AWSError, data: EC2.Types.CreateNetworkInsightsPathResult) => void): Request<EC2.Types.CreateNetworkInsightsPathResult, AWSError>;
|
|
731
731
|
/**
|
|
732
|
-
* Creates a path to analyze for reachability. Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see
|
|
732
|
+
* Creates a path to analyze for reachability. Reachability Analyzer enables you to analyze and debug network reachability between two resources in your virtual private cloud (VPC). For more information, see the Reachability Analyzer Guide.
|
|
733
733
|
*/
|
|
734
734
|
createNetworkInsightsPath(callback?: (err: AWSError, data: EC2.Types.CreateNetworkInsightsPathResult) => void): Request<EC2.Types.CreateNetworkInsightsPathResult, AWSError>;
|
|
735
735
|
/**
|
|
@@ -813,11 +813,11 @@ declare class EC2 extends Service {
|
|
|
813
813
|
*/
|
|
814
814
|
createSecurityGroup(callback?: (err: AWSError, data: EC2.Types.CreateSecurityGroupResult) => void): Request<EC2.Types.CreateSecurityGroupResult, AWSError>;
|
|
815
815
|
/**
|
|
816
|
-
* Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance. You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost. When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot. You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.
|
|
816
|
+
* Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance. You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost. When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot. You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending. When you create a snapshot for an EBS volume that serves as a root device, we recommend that you stop the instance before taking the snapshot. Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected. You can tag your snapshots during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide. For more information, see Amazon Elastic Block Store and Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.
|
|
817
817
|
*/
|
|
818
818
|
createSnapshot(params: EC2.Types.CreateSnapshotRequest, callback?: (err: AWSError, data: EC2.Types.Snapshot) => void): Request<EC2.Types.Snapshot, AWSError>;
|
|
819
819
|
/**
|
|
820
|
-
* Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance. You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost. When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot. You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending.
|
|
820
|
+
* Creates a snapshot of an EBS volume and stores it in Amazon S3. You can use snapshots for backups, to make copies of EBS volumes, and to save data before shutting down an instance. You can create snapshots of volumes in a Region and volumes on an Outpost. If you create a snapshot of a volume in a Region, the snapshot must be stored in the same Region as the volume. If you create a snapshot of a volume on an Outpost, the snapshot can be stored on the same Outpost as the volume, or in the Region for that Outpost. When a snapshot is created, any Amazon Web Services Marketplace product codes that are associated with the source volume are propagated to the snapshot. You can take a snapshot of an attached volume that is in use. However, snapshots only capture data that has been written to your Amazon EBS volume at the time the snapshot command is issued; this might exclude any data that has been cached by any applications or the operating system. If you can pause any file systems on the volume long enough to take a snapshot, your snapshot should be complete. However, if you cannot pause all file writes to the volume, you should unmount the volume from within the instance, issue the snapshot command, and then remount the volume to ensure a consistent and complete snapshot. You may remount and use your volume while the snapshot status is pending. When you create a snapshot for an EBS volume that serves as a root device, we recommend that you stop the instance before taking the snapshot. Snapshots that are taken from encrypted volumes are automatically encrypted. Volumes that are created from encrypted snapshots are also automatically encrypted. Your encrypted volumes and any associated snapshots always remain protected. You can tag your snapshots during creation. For more information, see Tag your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide. For more information, see Amazon Elastic Block Store and Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.
|
|
821
821
|
*/
|
|
822
822
|
createSnapshot(callback?: (err: AWSError, data: EC2.Types.Snapshot) => void): Request<EC2.Types.Snapshot, AWSError>;
|
|
823
823
|
/**
|
|
@@ -3429,11 +3429,11 @@ declare class EC2 extends Service {
|
|
|
3429
3429
|
*/
|
|
3430
3430
|
getIpamDiscoveredResourceCidrs(callback?: (err: AWSError, data: EC2.Types.GetIpamDiscoveredResourceCidrsResult) => void): Request<EC2.Types.GetIpamDiscoveredResourceCidrsResult, AWSError>;
|
|
3431
3431
|
/**
|
|
3432
|
-
* Get a list of all the CIDR allocations in an IPAM pool.
|
|
3432
|
+
* Get a list of all the CIDR allocations in an IPAM pool. If you use this action after AllocateIpamPoolCidr or ReleaseIpamPoolAllocation, note that all EC2 API actions follow an eventual consistency model.
|
|
3433
3433
|
*/
|
|
3434
3434
|
getIpamPoolAllocations(params: EC2.Types.GetIpamPoolAllocationsRequest, callback?: (err: AWSError, data: EC2.Types.GetIpamPoolAllocationsResult) => void): Request<EC2.Types.GetIpamPoolAllocationsResult, AWSError>;
|
|
3435
3435
|
/**
|
|
3436
|
-
* Get a list of all the CIDR allocations in an IPAM pool.
|
|
3436
|
+
* Get a list of all the CIDR allocations in an IPAM pool. If you use this action after AllocateIpamPoolCidr or ReleaseIpamPoolAllocation, note that all EC2 API actions follow an eventual consistency model.
|
|
3437
3437
|
*/
|
|
3438
3438
|
getIpamPoolAllocations(callback?: (err: AWSError, data: EC2.Types.GetIpamPoolAllocationsResult) => void): Request<EC2.Types.GetIpamPoolAllocationsResult, AWSError>;
|
|
3439
3439
|
/**
|
|
@@ -4365,11 +4365,11 @@ declare class EC2 extends Service {
|
|
|
4365
4365
|
*/
|
|
4366
4366
|
releaseHosts(callback?: (err: AWSError, data: EC2.Types.ReleaseHostsResult) => void): Request<EC2.Types.ReleaseHostsResult, AWSError>;
|
|
4367
4367
|
/**
|
|
4368
|
-
* Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide.
|
|
4368
|
+
* Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide. All EC2 API actions follow an eventual consistency model.
|
|
4369
4369
|
*/
|
|
4370
4370
|
releaseIpamPoolAllocation(params: EC2.Types.ReleaseIpamPoolAllocationRequest, callback?: (err: AWSError, data: EC2.Types.ReleaseIpamPoolAllocationResult) => void): Request<EC2.Types.ReleaseIpamPoolAllocationResult, AWSError>;
|
|
4371
4371
|
/**
|
|
4372
|
-
* Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide.
|
|
4372
|
+
* Release an allocation within an IPAM pool. You can only use this action to release manual allocations. To remove an allocation for a resource without deleting the resource, set its monitored state to false using ModifyIpamResourceCidr. For more information, see Release an allocation in the Amazon VPC IPAM User Guide. All EC2 API actions follow an eventual consistency model.
|
|
4373
4373
|
*/
|
|
4374
4374
|
releaseIpamPoolAllocation(callback?: (err: AWSError, data: EC2.Types.ReleaseIpamPoolAllocationResult) => void): Request<EC2.Types.ReleaseIpamPoolAllocationResult, AWSError>;
|
|
4375
4375
|
/**
|
|
@@ -5312,13 +5312,37 @@ declare namespace EC2 {
|
|
|
5312
5312
|
export type AddedPrincipalSet = AddedPrincipal[];
|
|
5313
5313
|
export interface AdditionalDetail {
|
|
5314
5314
|
/**
|
|
5315
|
-
* The
|
|
5315
|
+
* The additional detail code.
|
|
5316
5316
|
*/
|
|
5317
5317
|
AdditionalDetailType?: String;
|
|
5318
5318
|
/**
|
|
5319
5319
|
* The path component.
|
|
5320
5320
|
*/
|
|
5321
5321
|
Component?: AnalysisComponent;
|
|
5322
|
+
/**
|
|
5323
|
+
* The VPC endpoint service.
|
|
5324
|
+
*/
|
|
5325
|
+
VpcEndpointService?: AnalysisComponent;
|
|
5326
|
+
/**
|
|
5327
|
+
* The rule options.
|
|
5328
|
+
*/
|
|
5329
|
+
RuleOptions?: RuleOptionList;
|
|
5330
|
+
/**
|
|
5331
|
+
* The rule group type.
|
|
5332
|
+
*/
|
|
5333
|
+
RuleGroupTypePairs?: RuleGroupTypePairList;
|
|
5334
|
+
/**
|
|
5335
|
+
* The rule options.
|
|
5336
|
+
*/
|
|
5337
|
+
RuleGroupRuleOptionsPairs?: RuleGroupRuleOptionsPairList;
|
|
5338
|
+
/**
|
|
5339
|
+
* The name of the VPC endpoint service.
|
|
5340
|
+
*/
|
|
5341
|
+
ServiceName?: String;
|
|
5342
|
+
/**
|
|
5343
|
+
* The load balancers.
|
|
5344
|
+
*/
|
|
5345
|
+
LoadBalancers?: AnalysisComponentList;
|
|
5322
5346
|
}
|
|
5323
5347
|
export type AdditionalDetailList = AdditionalDetail[];
|
|
5324
5348
|
export interface Address {
|
|
@@ -5778,6 +5802,18 @@ declare namespace EC2 {
|
|
|
5778
5802
|
* The state. The following are the possible values: active blackhole
|
|
5779
5803
|
*/
|
|
5780
5804
|
State?: String;
|
|
5805
|
+
/**
|
|
5806
|
+
* The ID of a carrier gateway.
|
|
5807
|
+
*/
|
|
5808
|
+
CarrierGatewayId?: String;
|
|
5809
|
+
/**
|
|
5810
|
+
* The Amazon Resource Name (ARN) of a core network.
|
|
5811
|
+
*/
|
|
5812
|
+
CoreNetworkArn?: ResourceArn;
|
|
5813
|
+
/**
|
|
5814
|
+
* The ID of a local gateway.
|
|
5815
|
+
*/
|
|
5816
|
+
LocalGatewayId?: String;
|
|
5781
5817
|
}
|
|
5782
5818
|
export interface AnalysisSecurityGroupRule {
|
|
5783
5819
|
/**
|
|
@@ -9610,21 +9646,21 @@ declare namespace EC2 {
|
|
|
9610
9646
|
}
|
|
9611
9647
|
export interface CreateNetworkInsightsPathRequest {
|
|
9612
9648
|
/**
|
|
9613
|
-
* The IP address of the
|
|
9649
|
+
* The IP address of the source.
|
|
9614
9650
|
*/
|
|
9615
9651
|
SourceIp?: IpAddress;
|
|
9616
9652
|
/**
|
|
9617
|
-
* The IP address of the
|
|
9653
|
+
* The IP address of the destination.
|
|
9618
9654
|
*/
|
|
9619
9655
|
DestinationIp?: IpAddress;
|
|
9620
9656
|
/**
|
|
9621
|
-
* The
|
|
9657
|
+
* The ID or ARN of the source. If the resource is in another account, you must specify an ARN.
|
|
9622
9658
|
*/
|
|
9623
9659
|
Source: NetworkInsightsResourceId;
|
|
9624
9660
|
/**
|
|
9625
|
-
* The
|
|
9661
|
+
* The ID or ARN of the destination. If the resource is in another account, you must specify an ARN.
|
|
9626
9662
|
*/
|
|
9627
|
-
Destination
|
|
9663
|
+
Destination?: NetworkInsightsResourceId;
|
|
9628
9664
|
/**
|
|
9629
9665
|
* The protocol.
|
|
9630
9666
|
*/
|
|
@@ -9645,6 +9681,14 @@ declare namespace EC2 {
|
|
|
9645
9681
|
* Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to ensure idempotency.
|
|
9646
9682
|
*/
|
|
9647
9683
|
ClientToken: String;
|
|
9684
|
+
/**
|
|
9685
|
+
* Scopes the analysis to network paths that match specific filters at the source. If you specify this parameter, you can't specify the parameters for the source IP address or the destination port.
|
|
9686
|
+
*/
|
|
9687
|
+
FilterAtSource?: PathRequestFilter;
|
|
9688
|
+
/**
|
|
9689
|
+
* Scopes the analysis to network paths that match specific filters at the destination. If you specify this parameter, you can't specify the parameter for the destination IP address.
|
|
9690
|
+
*/
|
|
9691
|
+
FilterAtDestination?: PathRequestFilter;
|
|
9648
9692
|
}
|
|
9649
9693
|
export interface CreateNetworkInsightsPathResult {
|
|
9650
9694
|
/**
|
|
@@ -9986,7 +10030,7 @@ declare namespace EC2 {
|
|
|
9986
10030
|
}
|
|
9987
10031
|
export interface CreateSecurityGroupRequest {
|
|
9988
10032
|
/**
|
|
9989
|
-
* A description for the security group.
|
|
10033
|
+
* A description for the security group. Constraints: Up to 255 characters in length Constraints for EC2-Classic: ASCII characters Constraints for EC2-VPC: a-z, A-Z, 0-9, spaces, and ._-:/()#,@[]+=&;{}!$*
|
|
9990
10034
|
*/
|
|
9991
10035
|
Description: String;
|
|
9992
10036
|
/**
|
|
@@ -15267,7 +15311,7 @@ declare namespace EC2 {
|
|
|
15267
15311
|
*/
|
|
15268
15312
|
NetworkInsightsPathIds?: NetworkInsightsPathIdList;
|
|
15269
15313
|
/**
|
|
15270
|
-
* The filters. The following are the possible values: destination - The ID of the resource. destination-port - The destination port. protocol - The protocol. source - The ID of the resource.
|
|
15314
|
+
* The filters. The following are the possible values: destination - The ID of the resource. filter-at-source.source-address - The source IPv4 address at the source. filter-at-source.source-port-range - The source port range at the source. filter-at-source.destination-address - The destination IPv4 address at the source. filter-at-source.destination-port-range - The destination port range at the source. filter-at-destination.source-address - The source IPv4 address at the destination. filter-at-destination.source-port-range - The source port range at the destination. filter-at-destination.destination-address - The destination IPv4 address at the destination. filter-at-destination.destination-port-range - The destination port range at the destination. protocol - The protocol. source - The ID of the resource.
|
|
15271
15315
|
*/
|
|
15272
15316
|
Filters?: FilterList;
|
|
15273
15317
|
/**
|
|
@@ -18282,7 +18326,7 @@ declare namespace EC2 {
|
|
|
18282
18326
|
/**
|
|
18283
18327
|
* A presigned URL for the import manifest stored in Amazon S3 and presented here as an Amazon S3 presigned URL. For information about creating a presigned URL for an Amazon S3 object, read the "Query String Request Authentication Alternative" section of the Authenticating REST Requests topic in the Amazon Simple Storage Service Developer Guide. For information about the import manifest referenced by this API action, see VM Import Manifest.
|
|
18284
18328
|
*/
|
|
18285
|
-
ImportManifestUrl:
|
|
18329
|
+
ImportManifestUrl: ImportManifestUrl;
|
|
18286
18330
|
}
|
|
18287
18331
|
export type DiskImageFormat = "VMDK"|"RAW"|"VHD"|string;
|
|
18288
18332
|
export type DiskImageList = DiskImage[];
|
|
@@ -19231,6 +19275,14 @@ declare namespace EC2 {
|
|
|
19231
19275
|
* The Region for the component.
|
|
19232
19276
|
*/
|
|
19233
19277
|
ComponentRegion?: ComponentRegion;
|
|
19278
|
+
/**
|
|
19279
|
+
* The Network Firewall stateless rule.
|
|
19280
|
+
*/
|
|
19281
|
+
FirewallStatelessRule?: FirewallStatelessRule;
|
|
19282
|
+
/**
|
|
19283
|
+
* The Network Firewall stateful rule.
|
|
19284
|
+
*/
|
|
19285
|
+
FirewallStatefulRule?: FirewallStatefulRule;
|
|
19234
19286
|
}
|
|
19235
19287
|
export type ExplanationList = Explanation[];
|
|
19236
19288
|
export interface ExportClientVpnClientCertificateRevocationListRequest {
|
|
@@ -19595,7 +19647,85 @@ declare namespace EC2 {
|
|
|
19595
19647
|
Values?: ValueStringList;
|
|
19596
19648
|
}
|
|
19597
19649
|
export type FilterList = Filter[];
|
|
19650
|
+
export interface FilterPortRange {
|
|
19651
|
+
/**
|
|
19652
|
+
* The first port in the range.
|
|
19653
|
+
*/
|
|
19654
|
+
FromPort?: Port;
|
|
19655
|
+
/**
|
|
19656
|
+
* The last port in the range.
|
|
19657
|
+
*/
|
|
19658
|
+
ToPort?: Port;
|
|
19659
|
+
}
|
|
19598
19660
|
export type FindingsFound = "true"|"false"|"unknown"|string;
|
|
19661
|
+
export interface FirewallStatefulRule {
|
|
19662
|
+
/**
|
|
19663
|
+
* The ARN of the stateful rule group.
|
|
19664
|
+
*/
|
|
19665
|
+
RuleGroupArn?: ResourceArn;
|
|
19666
|
+
/**
|
|
19667
|
+
* The source IP addresses, in CIDR notation.
|
|
19668
|
+
*/
|
|
19669
|
+
Sources?: ValueStringList;
|
|
19670
|
+
/**
|
|
19671
|
+
* The destination IP addresses, in CIDR notation.
|
|
19672
|
+
*/
|
|
19673
|
+
Destinations?: ValueStringList;
|
|
19674
|
+
/**
|
|
19675
|
+
* The source ports.
|
|
19676
|
+
*/
|
|
19677
|
+
SourcePorts?: PortRangeList;
|
|
19678
|
+
/**
|
|
19679
|
+
* The destination ports.
|
|
19680
|
+
*/
|
|
19681
|
+
DestinationPorts?: PortRangeList;
|
|
19682
|
+
/**
|
|
19683
|
+
* The protocol.
|
|
19684
|
+
*/
|
|
19685
|
+
Protocol?: String;
|
|
19686
|
+
/**
|
|
19687
|
+
* The rule action. The possible values are pass, drop, and alert.
|
|
19688
|
+
*/
|
|
19689
|
+
RuleAction?: String;
|
|
19690
|
+
/**
|
|
19691
|
+
* The direction. The possible values are FORWARD and ANY.
|
|
19692
|
+
*/
|
|
19693
|
+
Direction?: String;
|
|
19694
|
+
}
|
|
19695
|
+
export interface FirewallStatelessRule {
|
|
19696
|
+
/**
|
|
19697
|
+
* The ARN of the stateless rule group.
|
|
19698
|
+
*/
|
|
19699
|
+
RuleGroupArn?: ResourceArn;
|
|
19700
|
+
/**
|
|
19701
|
+
* The source IP addresses, in CIDR notation.
|
|
19702
|
+
*/
|
|
19703
|
+
Sources?: ValueStringList;
|
|
19704
|
+
/**
|
|
19705
|
+
* The destination IP addresses, in CIDR notation.
|
|
19706
|
+
*/
|
|
19707
|
+
Destinations?: ValueStringList;
|
|
19708
|
+
/**
|
|
19709
|
+
* The source ports.
|
|
19710
|
+
*/
|
|
19711
|
+
SourcePorts?: PortRangeList;
|
|
19712
|
+
/**
|
|
19713
|
+
* The destination ports.
|
|
19714
|
+
*/
|
|
19715
|
+
DestinationPorts?: PortRangeList;
|
|
19716
|
+
/**
|
|
19717
|
+
* The protocols.
|
|
19718
|
+
*/
|
|
19719
|
+
Protocols?: ProtocolIntList;
|
|
19720
|
+
/**
|
|
19721
|
+
* The rule action. The possible values are pass, drop, and forward_to_site.
|
|
19722
|
+
*/
|
|
19723
|
+
RuleAction?: String;
|
|
19724
|
+
/**
|
|
19725
|
+
* The rule priority.
|
|
19726
|
+
*/
|
|
19727
|
+
Priority?: Priority;
|
|
19728
|
+
}
|
|
19599
19729
|
export type FleetActivityStatus = "error"|"pending_fulfillment"|"pending_termination"|"fulfilled"|string;
|
|
19600
19730
|
export interface FleetCapacityReservation {
|
|
19601
19731
|
/**
|
|
@@ -22389,6 +22519,7 @@ declare namespace EC2 {
|
|
|
22389
22519
|
*/
|
|
22390
22520
|
Tags?: TagList;
|
|
22391
22521
|
}
|
|
22522
|
+
export type ImportManifestUrl = string;
|
|
22392
22523
|
export interface ImportSnapshotRequest {
|
|
22393
22524
|
/**
|
|
22394
22525
|
* The client-specific data.
|
|
@@ -28728,7 +28859,7 @@ declare namespace EC2 {
|
|
|
28728
28859
|
*/
|
|
28729
28860
|
AdditionalAccounts?: ValueStringList;
|
|
28730
28861
|
/**
|
|
28731
|
-
* The Amazon Resource Names (ARN) of the
|
|
28862
|
+
* The Amazon Resource Names (ARN) of the resources that the path must traverse.
|
|
28732
28863
|
*/
|
|
28733
28864
|
FilterInArns?: ArnList;
|
|
28734
28865
|
/**
|
|
@@ -28794,11 +28925,11 @@ declare namespace EC2 {
|
|
|
28794
28925
|
*/
|
|
28795
28926
|
CreatedDate?: MillisecondDateTime;
|
|
28796
28927
|
/**
|
|
28797
|
-
* The
|
|
28928
|
+
* The ID of the source.
|
|
28798
28929
|
*/
|
|
28799
28930
|
Source?: String;
|
|
28800
28931
|
/**
|
|
28801
|
-
* The
|
|
28932
|
+
* The ID of the destination.
|
|
28802
28933
|
*/
|
|
28803
28934
|
Destination?: String;
|
|
28804
28935
|
/**
|
|
@@ -28810,11 +28941,11 @@ declare namespace EC2 {
|
|
|
28810
28941
|
*/
|
|
28811
28942
|
DestinationArn?: ResourceArn;
|
|
28812
28943
|
/**
|
|
28813
|
-
* The IP address of the
|
|
28944
|
+
* The IP address of the source.
|
|
28814
28945
|
*/
|
|
28815
28946
|
SourceIp?: IpAddress;
|
|
28816
28947
|
/**
|
|
28817
|
-
* The IP address of the
|
|
28948
|
+
* The IP address of the destination.
|
|
28818
28949
|
*/
|
|
28819
28950
|
DestinationIp?: IpAddress;
|
|
28820
28951
|
/**
|
|
@@ -28829,6 +28960,14 @@ declare namespace EC2 {
|
|
|
28829
28960
|
* The tags associated with the path.
|
|
28830
28961
|
*/
|
|
28831
28962
|
Tags?: TagList;
|
|
28963
|
+
/**
|
|
28964
|
+
* Scopes the analysis to network paths that match specific filters at the source.
|
|
28965
|
+
*/
|
|
28966
|
+
FilterAtSource?: PathFilter;
|
|
28967
|
+
/**
|
|
28968
|
+
* Scopes the analysis to network paths that match specific filters at the destination.
|
|
28969
|
+
*/
|
|
28970
|
+
FilterAtDestination?: PathFilter;
|
|
28832
28971
|
}
|
|
28833
28972
|
export type NetworkInsightsPathId = string;
|
|
28834
28973
|
export type NetworkInsightsPathIdList = NetworkInsightsPathId[];
|
|
@@ -29342,8 +29481,56 @@ declare namespace EC2 {
|
|
|
29342
29481
|
* The load balancer listener.
|
|
29343
29482
|
*/
|
|
29344
29483
|
ElasticLoadBalancerListener?: AnalysisComponent;
|
|
29484
|
+
/**
|
|
29485
|
+
* The Network Firewall stateless rule.
|
|
29486
|
+
*/
|
|
29487
|
+
FirewallStatelessRule?: FirewallStatelessRule;
|
|
29488
|
+
/**
|
|
29489
|
+
* The Network Firewall stateful rule.
|
|
29490
|
+
*/
|
|
29491
|
+
FirewallStatefulRule?: FirewallStatefulRule;
|
|
29492
|
+
/**
|
|
29493
|
+
* The name of the VPC endpoint service.
|
|
29494
|
+
*/
|
|
29495
|
+
ServiceName?: String;
|
|
29345
29496
|
}
|
|
29346
29497
|
export type PathComponentList = PathComponent[];
|
|
29498
|
+
export interface PathFilter {
|
|
29499
|
+
/**
|
|
29500
|
+
* The source IPv4 address.
|
|
29501
|
+
*/
|
|
29502
|
+
SourceAddress?: IpAddress;
|
|
29503
|
+
/**
|
|
29504
|
+
* The source port range.
|
|
29505
|
+
*/
|
|
29506
|
+
SourcePortRange?: FilterPortRange;
|
|
29507
|
+
/**
|
|
29508
|
+
* The destination IPv4 address.
|
|
29509
|
+
*/
|
|
29510
|
+
DestinationAddress?: IpAddress;
|
|
29511
|
+
/**
|
|
29512
|
+
* The destination port range.
|
|
29513
|
+
*/
|
|
29514
|
+
DestinationPortRange?: FilterPortRange;
|
|
29515
|
+
}
|
|
29516
|
+
export interface PathRequestFilter {
|
|
29517
|
+
/**
|
|
29518
|
+
* The source IPv4 address.
|
|
29519
|
+
*/
|
|
29520
|
+
SourceAddress?: IpAddress;
|
|
29521
|
+
/**
|
|
29522
|
+
* The source port range.
|
|
29523
|
+
*/
|
|
29524
|
+
SourcePortRange?: RequestFilterPortRange;
|
|
29525
|
+
/**
|
|
29526
|
+
* The destination IPv4 address.
|
|
29527
|
+
*/
|
|
29528
|
+
DestinationAddress?: IpAddress;
|
|
29529
|
+
/**
|
|
29530
|
+
* The destination port range.
|
|
29531
|
+
*/
|
|
29532
|
+
DestinationPortRange?: RequestFilterPortRange;
|
|
29533
|
+
}
|
|
29347
29534
|
export interface PathStatement {
|
|
29348
29535
|
/**
|
|
29349
29536
|
* The packet header statement.
|
|
@@ -29751,6 +29938,7 @@ declare namespace EC2 {
|
|
|
29751
29938
|
}
|
|
29752
29939
|
export type PrincipalIdFormatList = PrincipalIdFormat[];
|
|
29753
29940
|
export type PrincipalType = "All"|"Service"|"OrganizationUnit"|"Account"|"User"|"Role"|string;
|
|
29941
|
+
export type Priority = number;
|
|
29754
29942
|
export interface PrivateDnsDetails {
|
|
29755
29943
|
/**
|
|
29756
29944
|
* The private DNS name assigned to the VPC endpoint service.
|
|
@@ -29865,6 +30053,8 @@ declare namespace EC2 {
|
|
|
29865
30053
|
}
|
|
29866
30054
|
export type PropagatingVgwList = PropagatingVgw[];
|
|
29867
30055
|
export type Protocol = "tcp"|"udp"|string;
|
|
30056
|
+
export type ProtocolInt = number;
|
|
30057
|
+
export type ProtocolIntList = ProtocolInt[];
|
|
29868
30058
|
export type ProtocolList = Protocol[];
|
|
29869
30059
|
export type ProtocolValue = "gre"|string;
|
|
29870
30060
|
export interface ProvisionByoipCidrRequest {
|
|
@@ -30848,6 +31038,16 @@ declare namespace EC2 {
|
|
|
30848
31038
|
Status: ReportStatusType;
|
|
30849
31039
|
}
|
|
30850
31040
|
export type ReportStatusType = "ok"|"impaired"|string;
|
|
31041
|
+
export interface RequestFilterPortRange {
|
|
31042
|
+
/**
|
|
31043
|
+
* The first port in the range.
|
|
31044
|
+
*/
|
|
31045
|
+
FromPort?: Port;
|
|
31046
|
+
/**
|
|
31047
|
+
* The last port in the range.
|
|
31048
|
+
*/
|
|
31049
|
+
ToPort?: Port;
|
|
31050
|
+
}
|
|
30851
31051
|
export type RequestHostIdList = DedicatedHostId[];
|
|
30852
31052
|
export type RequestHostIdSet = DedicatedHostId[];
|
|
30853
31053
|
export type RequestInstanceTypeList = InstanceType[];
|
|
@@ -32197,6 +32397,39 @@ declare namespace EC2 {
|
|
|
32197
32397
|
export type RouteTableIdStringList = RouteTableId[];
|
|
32198
32398
|
export type RouteTableList = RouteTable[];
|
|
32199
32399
|
export type RuleAction = "allow"|"deny"|string;
|
|
32400
|
+
export interface RuleGroupRuleOptionsPair {
|
|
32401
|
+
/**
|
|
32402
|
+
* The ARN of the rule group.
|
|
32403
|
+
*/
|
|
32404
|
+
RuleGroupArn?: ResourceArn;
|
|
32405
|
+
/**
|
|
32406
|
+
* The rule options.
|
|
32407
|
+
*/
|
|
32408
|
+
RuleOptions?: RuleOptionList;
|
|
32409
|
+
}
|
|
32410
|
+
export type RuleGroupRuleOptionsPairList = RuleGroupRuleOptionsPair[];
|
|
32411
|
+
export interface RuleGroupTypePair {
|
|
32412
|
+
/**
|
|
32413
|
+
* The ARN of the rule group.
|
|
32414
|
+
*/
|
|
32415
|
+
RuleGroupArn?: ResourceArn;
|
|
32416
|
+
/**
|
|
32417
|
+
* The rule group type. The possible values are Domain List and Suricata.
|
|
32418
|
+
*/
|
|
32419
|
+
RuleGroupType?: String;
|
|
32420
|
+
}
|
|
32421
|
+
export type RuleGroupTypePairList = RuleGroupTypePair[];
|
|
32422
|
+
export interface RuleOption {
|
|
32423
|
+
/**
|
|
32424
|
+
* The Suricata keyword.
|
|
32425
|
+
*/
|
|
32426
|
+
Keyword?: String;
|
|
32427
|
+
/**
|
|
32428
|
+
* The settings for the keyword.
|
|
32429
|
+
*/
|
|
32430
|
+
Settings?: StringList;
|
|
32431
|
+
}
|
|
32432
|
+
export type RuleOptionList = RuleOption[];
|
|
32200
32433
|
export interface RunInstancesMonitoringEnabled {
|
|
32201
32434
|
/**
|
|
32202
32435
|
* Indicates whether detailed monitoring is enabled. Otherwise, basic monitoring is enabled.
|
|
@@ -1528,7 +1528,7 @@ declare namespace IoTSiteWise {
|
|
|
1528
1528
|
}
|
|
1529
1529
|
export interface BatchGetAssetPropertyValueRequest {
|
|
1530
1530
|
/**
|
|
1531
|
-
* The list of asset property value entries for the batch get request. You can specify up to
|
|
1531
|
+
* The list of asset property value entries for the batch get request. You can specify up to 128 entries per request.
|
|
1532
1532
|
*/
|
|
1533
1533
|
entries: BatchGetAssetPropertyValueEntries;
|
|
1534
1534
|
/**
|
|
@@ -2638,6 +2638,10 @@ declare namespace IoTSiteWise {
|
|
|
2638
2638
|
* The date that the time series was last updated, in Unix epoch time.
|
|
2639
2639
|
*/
|
|
2640
2640
|
timeSeriesLastUpdateDate: Timestamp;
|
|
2641
|
+
/**
|
|
2642
|
+
* The ARN of the time series, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:time-series/${TimeSeriesId}
|
|
2643
|
+
*/
|
|
2644
|
+
timeSeriesArn: ARN;
|
|
2641
2645
|
}
|
|
2642
2646
|
export type Description = string;
|
|
2643
2647
|
export interface DetailedError {
|
|
@@ -3893,6 +3897,10 @@ declare namespace IoTSiteWise {
|
|
|
3893
3897
|
* The date that the time series was last updated, in Unix epoch time.
|
|
3894
3898
|
*/
|
|
3895
3899
|
timeSeriesLastUpdateDate: Timestamp;
|
|
3900
|
+
/**
|
|
3901
|
+
* The ARN of the time series, which has the following format. arn:${Partition}:iotsitewise:${Region}:${Account}:time-series/${TimeSeriesId}
|
|
3902
|
+
*/
|
|
3903
|
+
timeSeriesArn: ARN;
|
|
3896
3904
|
}
|
|
3897
3905
|
export type Timestamp = Date;
|
|
3898
3906
|
export type Timestamps = TimeInNanos[];
|