Skip to content

Commit 090fbf9

Browse files
author
awstools
committed
feat(client-datazone): adding IAM principal id to IAM user profile details
1 parent 6eb1c3d commit 090fbf9

File tree

6 files changed

+16
-0
lines changed

6 files changed

+16
-0
lines changed

clients/client-datazone/src/commands/CreateUserProfileCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface CreateUserProfileCommandOutput extends CreateUserProfileOutput,
5555
* // details: { // UserProfileDetails Union: only one key present
5656
* // iam: { // IamUserProfileDetails
5757
* // arn: "STRING_VALUE",
58+
* // principalId: "STRING_VALUE",
5859
* // },
5960
* // sso: { // SsoUserProfileDetails
6061
* // username: "STRING_VALUE",

clients/client-datazone/src/commands/GetUserProfileCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ export interface GetUserProfileCommandOutput extends GetUserProfileOutput, __Met
5050
* // details: { // UserProfileDetails Union: only one key present
5151
* // iam: { // IamUserProfileDetails
5252
* // arn: "STRING_VALUE",
53+
* // principalId: "STRING_VALUE",
5354
* // },
5455
* // sso: { // SsoUserProfileDetails
5556
* // username: "STRING_VALUE",

clients/client-datazone/src/commands/SearchUserProfilesCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ export interface SearchUserProfilesCommandOutput extends SearchUserProfilesOutpu
5959
* // details: { // UserProfileDetails Union: only one key present
6060
* // iam: { // IamUserProfileDetails
6161
* // arn: "STRING_VALUE",
62+
* // principalId: "STRING_VALUE",
6263
* // },
6364
* // sso: { // SsoUserProfileDetails
6465
* // username: "STRING_VALUE",

clients/client-datazone/src/commands/UpdateUserProfileCommand.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ export interface UpdateUserProfileCommandOutput extends UpdateUserProfileOutput,
5555
* // details: { // UserProfileDetails Union: only one key present
5656
* // iam: { // IamUserProfileDetails
5757
* // arn: "STRING_VALUE",
58+
* // principalId: "STRING_VALUE",
5859
* // },
5960
* // sso: { // SsoUserProfileDetails
6061
* // username: "STRING_VALUE",

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,6 +1176,12 @@ export interface IamUserProfileDetails {
11761176
* @public
11771177
*/
11781178
arn?: string | undefined;
1179+
1180+
/**
1181+
* <p>Principal ID of the IAM user.</p>
1182+
* @public
1183+
*/
1184+
principalId?: string | undefined;
11791185
}
11801186

11811187
/**

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21377,6 +21377,12 @@
2137721377
"traits": {
2137821378
"smithy.api#documentation": "<p>The ARN of an IAM user profile in Amazon DataZone.</p>"
2137921379
}
21380+
},
21381+
"principalId": {
21382+
"target": "smithy.api#String",
21383+
"traits": {
21384+
"smithy.api#documentation": "<p>Principal ID of the IAM user.</p>"
21385+
}
2138021386
}
2138121387
},
2138221388
"traits": {

0 commit comments

Comments
 (0)