Interface CfnEndpointConfigPropsMixin.CoreDumpConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointConfigPropsMixin.CoreDumpConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEndpointConfigPropsMixin
@Stability(Stable)
public static interface CfnEndpointConfigPropsMixin.CoreDumpConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
CoreDumpConfigProperty coreDumpConfigProperty = CoreDumpConfigProperty.builder()
.destinationS3Uri("destinationS3Uri")
.kmsKeyId("kmsKeyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfigPropsMixin.CoreDumpConfigPropertystatic final classAn implementation forCfnEndpointConfigPropsMixin.CoreDumpConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationS3Uri
The Amazon S3 bucket to send the core dump to.- See Also:
-
getKmsKeyId
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.
- See Also:
-
builder
-