interface S3DataDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Personalize.CfnMetricAttributionPropsMixin.S3DataDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspersonalize#CfnMetricAttributionPropsMixin_S3DataDestinationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.personalize.CfnMetricAttributionPropsMixin.S3DataDestinationProperty |
Python | aws_cdk.cfn_property_mixins.aws_personalize.CfnMetricAttributionPropsMixin.S3DataDestinationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_personalize » CfnMetricAttributionPropsMixin » S3DataDestinationProperty |
The configuration details of an Amazon S3 output bucket.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from '@aws-cdk/cfn-property-mixins';
const s3DataDestinationProperty: personalize.CfnMetricAttributionPropsMixin.S3DataDestinationProperty = {
kmsKeyArn: 'kmsKeyArn',
path: 'path',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ARN of the KMS key. |
| path? | string | The file path of the Amazon S3 bucket. |
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key.
path?
Type:
string
(optional)
The file path of the Amazon S3 bucket.

.NET
Go
Java
Python
TypeScript