interface CoreDumpConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnEndpointConfig.CoreDumpConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnEndpointConfig_CoreDumpConfigProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnEndpointConfig.CoreDumpConfigProperty |
Python | aws_cdk.aws_sagemaker.CfnEndpointConfig.CoreDumpConfigProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnEndpointConfig » CoreDumpConfigProperty |
Specifies where SageMaker writes core dumps from the model container when the process crashes, and how it encrypts them.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const coreDumpConfigProperty: sagemaker.CfnEndpointConfig.CoreDumpConfigProperty = {
destinationS3Uri: 'destinationS3Uri',
// the properties below are optional
kmsKeyId: 'kmsKeyId',
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The Amazon S3 bucket to send the core dump to. |
| kms | string | The AWS Key Management Service (AWS KMS) key that SageMaker uses to encrypt the core dump data at rest using Amazon S3 server-side encryption. |
destinationS3Uri
Type:
string
The Amazon S3 bucket to send the core dump to.
kmsKeyId?
Type:
string
(optional)
The AWS Key Management Service (AWS KMS) key that SageMaker uses to encrypt the core dump data at rest using Amazon S3 server-side encryption.
If you use a KMS key ID or an alias of your KMS key, the SageMaker execution role must include permissions to call kms:Encrypt.

.NET
Go
Java
Python
TypeScript