interface SampleDocumentsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.B2BI.Mixins.CfnTransformerPropsMixin.SampleDocumentsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsb2bi/mixins#CfnTransformerPropsMixin_SampleDocumentsProperty |
Java | software.amazon.awscdk.mixins.preview.services.b2bi.mixins.CfnTransformerPropsMixin.SampleDocumentsProperty |
Python | aws_cdk.mixins_preview.aws_b2bi.mixins.CfnTransformerPropsMixin.SampleDocumentsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_b2bi » mixins » CfnTransformerPropsMixin » SampleDocumentsProperty |
Describes a structure that contains the Amazon S3 bucket and an array of the corresponding keys used to identify the location for your sample documents.
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 sampleDocumentsProperty: b2bi_mixins.CfnTransformerPropsMixin.SampleDocumentsProperty = {
bucketName: 'bucketName',
keys: [{
input: 'input',
output: 'output',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | Contains the Amazon S3 bucket that is used to hold your sample documents. |
| keys? | IResolvable | (IResolvable | Sample)[] | Contains an array of the Amazon S3 keys used to identify the location for your sample documents. |
bucketName?
Type:
string
(optional)
Contains the Amazon S3 bucket that is used to hold your sample documents.
keys?
Type:
IResolvable | (IResolvable | Sample)[]
(optional)
Contains an array of the Amazon S3 keys used to identify the location for your sample documents.

.NET
Go
Java
Python
TypeScript