Skip to content

Commit

Permalink
feat(client-redshift-serverless): Updated SDK for Amazon Redshift Ser…
Browse files Browse the repository at this point in the history
…verless, which provides the ability to configure a connection with IAM Identity Center to manage user and group access to databases.
  • Loading branch information
awstools committed Nov 17, 2023
1 parent ceef825 commit d293ea1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export interface CreateNamespaceCommandOutput extends CreateNamespaceResponse, _
* ],
* manageAdminPassword: true || false,
* adminPasswordSecretKmsKeyId: "STRING_VALUE",
* redshiftIdcApplicationArn: "STRING_VALUE",
* };
* const command = new CreateNamespaceCommand(input);
* const response = await client.send(command);
Expand Down
6 changes: 6 additions & 0 deletions clients/client-redshift-serverless/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,12 @@ export interface CreateNamespaceRequest {
* You can only use this parameter if <code>manageAdminPassword</code> is true.</p>
*/
adminPasswordSecretKmsKeyId?: string;

/**
* @public
* <p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>
*/
redshiftIdcApplicationArn?: string;
}

/**
Expand Down
15 changes: 15 additions & 0 deletions codegen/sdk-codegen/aws-models/redshift-serverless.json
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,12 @@
"traits": {
"smithy.api#documentation": "<p>The ID of the Key Management Service (KMS) key used to encrypt and store the namespace's admin credentials secret. \n You can only use this parameter if <code>manageAdminPassword</code> is true.</p>"
}
},
"redshiftIdcApplicationArn": {
"target": "com.amazonaws.redshiftserverless#RedshiftIdcApplicationArn",
"traits": {
"smithy.api#documentation": "<p>The ARN for the Redshift application that integrates with IAM Identity Center.</p>"
}
}
},
"traits": {
Expand Down Expand Up @@ -3160,6 +3166,15 @@
}
]
},
"com.amazonaws.redshiftserverless#RedshiftIdcApplicationArn": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 1,
"max": 1024
}
}
},
"com.amazonaws.redshiftserverless#RedshiftServerless": {
"type": "service",
"version": "2021-04-21",
Expand Down

0 comments on commit d293ea1

Please sign in to comment.