Skip to content

Commit 5ba1cf6

Browse files
author
awstools
committed
feat(client-ec2): This release adds AvailabilityZoneId support for CreateInstanceConnectEndpoint, DescribeInstanceConnectEndpoints, and DeleteInstanceConnectEndpoint APIs.
1 parent 77488e7 commit 5ba1cf6

File tree

6 files changed

+25
-1
lines changed

6 files changed

+25
-1
lines changed

clients/client-ec2/src/commands/CreateInstanceConnectEndpointCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ export interface CreateInstanceConnectEndpointCommandOutput
102102
* // FipsDnsName: "STRING_VALUE",
103103
* // },
104104
* // },
105+
* // AvailabilityZoneId: "STRING_VALUE",
105106
* // },
106107
* // ClientToken: "STRING_VALUE",
107108
* // };

clients/client-ec2/src/commands/DeleteInstanceConnectEndpointCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ export interface DeleteInstanceConnectEndpointCommandOutput
8181
* // FipsDnsName: "STRING_VALUE",
8282
* // },
8383
* // },
84+
* // AvailabilityZoneId: "STRING_VALUE",
8485
* // },
8586
* // };
8687
*

clients/client-ec2/src/commands/DescribeInstanceConnectEndpointsCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ export interface DescribeInstanceConnectEndpointsCommandOutput
9494
* // FipsDnsName: "STRING_VALUE",
9595
* // },
9696
* // },
97+
* // AvailabilityZoneId: "STRING_VALUE",
9798
* // },
9899
* // ],
99100
* // NextToken: "STRING_VALUE",

clients/client-ec2/src/models/models_1.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9377,6 +9377,12 @@ export interface Ec2InstanceConnectEndpoint {
93779377
* @public
93789378
*/
93799379
PublicDnsNames?: InstanceConnectEndpointPublicDnsNames | undefined;
9380+
9381+
/**
9382+
* <p>The ID of the Availability Zone of the EC2 Instance Connect Endpoint.</p>
9383+
* @public
9384+
*/
9385+
AvailabilityZoneId?: string | undefined;
93809386
}
93819387

93829388
/**

clients/client-ec2/src/schemas/schemas_0.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31964,7 +31964,7 @@ export var Ec2InstanceConnectEndpoint: StaticStructureSchema = [
3196431964
n0,
3196531965
_EICE,
3196631966
0,
31967-
[_OI, _ICEI, _ICEA, _St, _SMta, _DNn, _FDN, _NIIe, _VI, _AZ, _CAr, _SIu, _PCI, _SGIe, _T, _IAT, _PDNu],
31967+
[_OI, _ICEI, _ICEA, _St, _SMta, _DNn, _FDN, _NIIe, _VI, _AZ, _CAr, _SIu, _PCI, _SGIe, _T, _IAT, _PDNu, _AZI],
3196831968
[
3196931969
[
3197031970
0,
@@ -32085,6 +32085,13 @@ export var Ec2InstanceConnectEndpoint: StaticStructureSchema = [
3208532085
[_xN]: _pDN,
3208632086
},
3208732087
],
32088+
[
32089+
0,
32090+
{
32091+
[_eQN]: `AvailabilityZoneId`,
32092+
[_xN]: _aZI,
32093+
},
32094+
],
3208832095
],
3208932096
];
3209032097
export var EfaInfo: StaticStructureSchema = [

codegen/sdk-codegen/aws-models/ec2.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53398,6 +53398,14 @@
5339853398
"smithy.api#documentation": "<p>The public DNS names of the endpoint.</p>",
5339953399
"smithy.api#xmlName": "publicDnsNames"
5340053400
}
53401+
},
53402+
"AvailabilityZoneId": {
53403+
"target": "com.amazonaws.ec2#AvailabilityZoneId",
53404+
"traits": {
53405+
"aws.protocols#ec2QueryName": "AvailabilityZoneId",
53406+
"smithy.api#documentation": "<p>The ID of the Availability Zone of the EC2 Instance Connect Endpoint.</p>",
53407+
"smithy.api#xmlName": "availabilityZoneId"
53408+
}
5340153409
}
5340253410
},
5340353411
"traits": {

0 commit comments

Comments
 (0)