Class 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.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.B2BI
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTransformerPropsMixin.SampleDocumentsProperty : CfnTransformerPropsMixin.ISampleDocumentsProperty
Syntax (vb)
Public Class CfnTransformerPropsMixin.SampleDocumentsProperty Implements CfnTransformerPropsMixin.ISampleDocumentsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.B2BI;
var sampleDocumentsProperty = new SampleDocumentsProperty {
BucketName = "bucketName",
Keys = new [] { new SampleDocumentKeysProperty {
Input = "input",
Output = "output"
} }
};
Synopsis
Constructors
| 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. |
Properties
| BucketName | Contains the Amazon S3 bucket that is used to hold your sample documents. |
| Keys | Contains an array of the Amazon S3 keys used to identify the location for your sample documents. |
Constructors
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.
public SampleDocumentsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.B2BI;
var sampleDocumentsProperty = new SampleDocumentsProperty {
BucketName = "bucketName",
Keys = new [] { new SampleDocumentKeysProperty {
Input = "input",
Output = "output"
} }
};
Properties
BucketName
Contains the Amazon S3 bucket that is used to hold your sample documents.
public string? BucketName { get; set; }
Property Value
Remarks
Keys
Contains an array of the Amazon S3 keys used to identify the location for your sample documents.
public object? Keys { get; set; }