Skip to content

Commit 03a1150

Browse files
author
awstools
committed
feat(client-sagemaker): This release adds support for customer-managed KMS keys in Amazon SageMaker Partner AI Apps
1 parent 8b6fe4c commit 03a1150

File tree

6 files changed

+43
-0
lines changed

6 files changed

+43
-0
lines changed

clients/client-sagemaker/src/commands/CreatePartnerAppCommand.ts

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ export interface CreatePartnerAppCommandOutput extends CreatePartnerAppResponse,
3939
* Name: "STRING_VALUE", // required
4040
* Type: "lakera-guard" || "comet" || "deepchecks-llm-evaluation" || "fiddler", // required
4141
* ExecutionRoleArn: "STRING_VALUE", // required
42+
* KmsKeyId: "STRING_VALUE",
4243
* MaintenanceConfig: { // PartnerAppMaintenanceConfig
4344
* MaintenanceWindowStart: "STRING_VALUE",
4445
* },

clients/client-sagemaker/src/commands/DescribePartnerAppCommand.ts

+2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ export interface DescribePartnerAppCommandOutput extends DescribePartnerAppRespo
4646
* // Type: "lakera-guard" || "comet" || "deepchecks-llm-evaluation" || "fiddler",
4747
* // Status: "Creating" || "Updating" || "Deleting" || "Available" || "Failed" || "UpdateFailed" || "Deleted",
4848
* // CreationTime: new Date("TIMESTAMP"),
49+
* // LastModifiedTime: new Date("TIMESTAMP"),
4950
* // ExecutionRoleArn: "STRING_VALUE",
51+
* // KmsKeyId: "STRING_VALUE",
5052
* // BaseUrl: "STRING_VALUE",
5153
* // MaintenanceConfig: { // PartnerAppMaintenanceConfig
5254
* // MaintenanceWindowStart: "STRING_VALUE",

clients/client-sagemaker/src/models/models_2.ts

+7
Original file line numberDiff line numberDiff line change
@@ -872,6 +872,13 @@ export interface CreatePartnerAppRequest {
872872
*/
873873
ExecutionRoleArn: string | undefined;
874874

875+
/**
876+
* <p>SageMaker Partner AI Apps uses Amazon Web Services KMS to encrypt data at rest using an Amazon Web Services managed key by default. For more control, specify a
877+
* customer managed key.</p>
878+
* @public
879+
*/
880+
KmsKeyId?: string | undefined;
881+
875882
/**
876883
* <p>Maintenance configuration settings for the SageMaker Partner AI App.</p>
877884
* @public

clients/client-sagemaker/src/models/models_3.ts

+12
Original file line numberDiff line numberDiff line change
@@ -4072,12 +4072,24 @@ export interface DescribePartnerAppResponse {
40724072
*/
40734073
CreationTime?: Date | undefined;
40744074

4075+
/**
4076+
* <p>The time that the SageMaker Partner AI App was last modified.</p>
4077+
* @public
4078+
*/
4079+
LastModifiedTime?: Date | undefined;
4080+
40754081
/**
40764082
* <p>The ARN of the IAM role associated with the SageMaker Partner AI App.</p>
40774083
* @public
40784084
*/
40794085
ExecutionRoleArn?: string | undefined;
40804086

4087+
/**
4088+
* <p>The Amazon Web Services KMS customer managed key used to encrypt the data at rest associated with SageMaker Partner AI Apps.</p>
4089+
* @public
4090+
*/
4091+
KmsKeyId?: string | undefined;
4092+
40814093
/**
40824094
* <p>The URL of the SageMaker Partner AI App that the Application SDK uses to support in-app calls for the user.</p>
40834095
* @public

clients/client-sagemaker/src/protocols/Aws_json1_1.ts

+3
Original file line numberDiff line numberDiff line change
@@ -14636,6 +14636,7 @@ const se_CreatePartnerAppRequest = (input: CreatePartnerAppRequest, context: __S
1463614636
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
1463714637
EnableIamSessionBasedIdentity: [],
1463814638
ExecutionRoleArn: [],
14639+
KmsKeyId: [],
1463914640
MaintenanceConfig: _json,
1464014641
Name: [],
1464114642
Tags: _json,
@@ -22211,6 +22212,8 @@ const de_DescribePartnerAppResponse = (output: any, context: __SerdeContext): De
2221122212
EnableIamSessionBasedIdentity: __expectBoolean,
2221222213
Error: (_: any) => de_ErrorInfo(_, context),
2221322214
ExecutionRoleArn: __expectString,
22215+
KmsKeyId: __expectString,
22216+
LastModifiedTime: (_: any) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
2221422217
MaintenanceConfig: (_: any) => de_PartnerAppMaintenanceConfig(_, context),
2221522218
Name: __expectString,
2221622219
Status: __expectString,

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

+18
Original file line numberDiff line numberDiff line change
@@ -13998,6 +13998,12 @@
1399813998
"smithy.api#required": {}
1399913999
}
1400014000
},
14001+
"KmsKeyId": {
14002+
"target": "com.amazonaws.sagemaker#KmsKeyId",
14003+
"traits": {
14004+
"smithy.api#documentation": "<p>SageMaker Partner AI Apps uses Amazon Web Services KMS to encrypt data at rest using an Amazon Web Services managed key by default. For more control, specify a\n customer managed key.</p>"
14005+
}
14006+
},
1400114007
"MaintenanceConfig": {
1400214008
"target": "com.amazonaws.sagemaker#PartnerAppMaintenanceConfig",
1400314009
"traits": {
@@ -25515,12 +25521,24 @@
2551525521
"smithy.api#documentation": "<p>The time that the SageMaker Partner AI App was created.</p>"
2551625522
}
2551725523
},
25524+
"LastModifiedTime": {
25525+
"target": "com.amazonaws.sagemaker#Timestamp",
25526+
"traits": {
25527+
"smithy.api#documentation": "<p>The time that the SageMaker Partner AI App was last modified.</p>"
25528+
}
25529+
},
2551825530
"ExecutionRoleArn": {
2551925531
"target": "com.amazonaws.sagemaker#RoleArn",
2552025532
"traits": {
2552125533
"smithy.api#documentation": "<p>The ARN of the IAM role associated with the SageMaker Partner AI App.</p>"
2552225534
}
2552325535
},
25536+
"KmsKeyId": {
25537+
"target": "com.amazonaws.sagemaker#KmsKeyId",
25538+
"traits": {
25539+
"smithy.api#documentation": "<p>The Amazon Web Services KMS customer managed key used to encrypt the data at rest associated with SageMaker Partner AI Apps.</p>"
25540+
}
25541+
},
2552425542
"BaseUrl": {
2552525543
"target": "com.amazonaws.sagemaker#String2048",
2552625544
"traits": {

0 commit comments

Comments
 (0)