interface EdgeOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnDeviceFleetPropsMixin_EdgeOutputConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnDeviceFleetPropsMixin » EdgeOutputConfigProperty |
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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const edgeOutputConfigProperty: sagemaker_mixins.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty = {
kmsKeyId: 'kmsKeyId',
s3OutputLocation: 's3OutputLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The AWS Key Management Service ( AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job. |
| s3 | string | The Amazon Simple Storage (S3) bucket URI. |
kmsKeyId?
Type:
string
(optional)
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.
s3OutputLocation?
Type:
string
(optional)
The Amazon Simple Storage (S3) bucket URI.

.NET
Go
Java
Python
TypeScript