interface CoreDumpConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnEndpointConfigPropsMixin.CoreDumpConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnEndpointConfigPropsMixin_CoreDumpConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnEndpointConfigPropsMixin.CoreDumpConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnEndpointConfigPropsMixin.CoreDumpConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnEndpointConfigPropsMixin » 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/cfn-property-mixins';
const coreDumpConfigProperty: sagemaker.CfnEndpointConfigPropsMixin.CoreDumpConfigProperty = {
destinationS3Uri: 'destinationS3Uri',
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
(optional)
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