interface S3DataDestinationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Personalize.CfnMetricAttribution.S3DataDestinationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnMetricAttribution_S3DataDestinationProperty |
Java | software.amazon.awscdk.services.personalize.CfnMetricAttribution.S3DataDestinationProperty |
Python | aws_cdk.aws_personalize.CfnMetricAttribution.S3DataDestinationProperty |
TypeScript | aws-cdk-lib » aws_personalize » CfnMetricAttribution » 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-lib';
const s3DataDestinationProperty: personalize.CfnMetricAttribution.S3DataDestinationProperty = {
path: 'path',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| path | string | The file path of the Amazon S3 bucket. |
| kms | string | The ARN of the KMS key. |
path
Type:
string
The file path of the Amazon S3 bucket.
kmsKeyArn?
Type:
string
(optional)
The ARN of the KMS key.

.NET
Go
Java
Python
TypeScript