interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRooms.CfnAnalysisTemplate.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnAnalysisTemplate_S3LocationProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnAnalysisTemplate.S3LocationProperty |
Python | aws_cdk.aws_cleanrooms.CfnAnalysisTemplate.S3LocationProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnAnalysisTemplate » S3LocationProperty |
The S3 location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const s3LocationProperty: cleanrooms.CfnAnalysisTemplate.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The bucket name. |
| key | string | The object key. |
bucket
Type:
string
The bucket name.
key
Type:
string
The object key.

.NET
Go
Java
Python
TypeScript