interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnAnalysisTemplatePropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnAnalysisTemplatePropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnAnalysisTemplatePropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnAnalysisTemplatePropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » CfnAnalysisTemplatePropsMixin » 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/cfn-property-mixins';
const s3LocationProperty: cleanrooms.CfnAnalysisTemplatePropsMixin.S3LocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The bucket name. |
| key? | string | The object key. |
bucket?
Type:
string
(optional)
The bucket name.
key?
Type:
string
(optional)
The object key.

.NET
Go
Java
Python
TypeScript