interface S3LocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.B2BI.CfnCapabilityPropsMixin.S3LocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsb2bi#CfnCapabilityPropsMixin_S3LocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.b2bi.CfnCapabilityPropsMixin.S3LocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_b2bi.CfnCapabilityPropsMixin.S3LocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_b2bi » 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 { aws_b2bi as b2bi } from '@aws-cdk/cfn-property-mixins';
const s3LocationProperty: b2bi.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