interface EdgeOutputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnDeviceFleetPropsMixin_EdgeOutputConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnDeviceFleetPropsMixin.EdgeOutputConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const edgeOutputConfigProperty: sagemaker.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