Interface CfnEndpointConfig.CoreDumpConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointConfig.CoreDumpConfigProperty.Jsii$Proxy
- Enclosing class:
CfnEndpointConfig
@Stability(Stable)
public static interface CfnEndpointConfig.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.services.sagemaker.*;
CoreDumpConfigProperty coreDumpConfigProperty = CoreDumpConfigProperty.builder()
.destinationS3Uri("destinationS3Uri")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfig.CoreDumpConfigPropertystatic final classAn implementation forCfnEndpointConfig.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
-