Interface CfnDeviceFleet.EdgeOutputConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDeviceFleet.EdgeOutputConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnDeviceFleet
@Stability(Stable)
public static interface CfnDeviceFleet.EdgeOutputConfigProperty
extends software.amazon.jsii.JsiiSerializable
The output configuration for storing sample data collected by the fleet.
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.*;
EdgeOutputConfigProperty edgeOutputConfigProperty = EdgeOutputConfigProperty.builder()
.s3OutputLocation("s3OutputLocation")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDeviceFleet.EdgeOutputConfigPropertystatic final classAn implementation forCfnDeviceFleet.EdgeOutputConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3OutputLocation
The Amazon Simple Storage (S3) bucket URI. -
getKmsKeyId
The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job.If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account.
-
builder
-