interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnCapabilityPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnCapabilityPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnCapabilityPropsMixin.S3LocationProperty |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnCapabilityPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnCapabilityPropsMixin » S3LocationProperty |
Specifies the details for the Amazon S3 file location that is being used with AWS B2B Data Interchange.
File locations in Amazon S3 are identified using a combination of the bucket and key.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as b2bi_mixins } from '@aws-cdk/mixins-preview/aws-b2bi';
const s3LocationProperty: b2bi_mixins.CfnCapabilityPropsMixin.S3LocationProperty = {
bucketName: 'bucketName',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Specifies the name of the Amazon S3 bucket. |
| key? | string | Specifies the Amazon S3 key for the file location. |
bucketName?
Type:
string
(optional)
Specifies the name of the Amazon S3 bucket.
key?
Type:
string
(optional)
Specifies the Amazon S3 key for the file location.

.NET
Go
Java
Python
TypeScript