Skip to content

Commit def0338

Browse files
author
awstools
committed
feat(client-datasync): Added support for FIPS VPC endpoints in FIPS-enabled AWS Regions.
1 parent 1e5c5b8 commit def0338

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

clients/client-datasync/src/commands/DescribeAgentCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface DescribeAgentCommandOutput extends DescribeAgentResponse, __Met
4949
* // Status: "ONLINE" || "OFFLINE",
5050
* // LastConnectionTime: new Date("TIMESTAMP"),
5151
* // CreationTime: new Date("TIMESTAMP"),
52-
* // EndpointType: "PUBLIC" || "PRIVATE_LINK" || "FIPS",
52+
* // EndpointType: "PUBLIC" || "PRIVATE_LINK" || "FIPS" || "FIPS_PRIVATE_LINK",
5353
* // PrivateLinkConfig: { // PrivateLinkConfig
5454
* // VpcEndpointId: "STRING_VALUE",
5555
* // PrivateLinkEndpoint: "STRING_VALUE",

clients/client-datasync/src/models/models_0.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2980,6 +2980,7 @@ export interface DescribeAgentRequest {
29802980
*/
29812981
export const EndpointType = {
29822982
FIPS: "FIPS",
2983+
FIPS_PRIVATE_LINK: "FIPS_PRIVATE_LINK",
29832984
PRIVATE_LINK: "PRIVATE_LINK",
29842985
PUBLIC: "PUBLIC",
29852986
} as const;

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3273,6 +3273,12 @@
32733273
"traits": {
32743274
"smithy.api#enumValue": "FIPS"
32753275
}
3276+
},
3277+
"FIPS_PRIVATE_LINK": {
3278+
"target": "smithy.api#Unit",
3279+
"traits": {
3280+
"smithy.api#enumValue": "FIPS_PRIVATE_LINK"
3281+
}
32763282
}
32773283
}
32783284
},

0 commit comments

Comments
 (0)