Show / Hide Table of Contents

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.

Inheritance
object
CfnTransformerPropsMixin.SampleDocumentsProperty
Implements
CfnTransformerPropsMixin.ISampleDocumentsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html#cfn-b2bi-transformer-sampledocuments-bucketname

Keys

Contains an array of the Amazon S3 keys used to identify the location for your sample documents.

public object? Keys { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-transformer-sampledocuments.html#cfn-b2bi-transformer-sampledocuments-keys

Type union: either IResolvable or (either IResolvable or CfnTransformerPropsMixin.ISampleDocumentKeysProperty)[]

Implements

CfnTransformerPropsMixin.ISampleDocumentsProperty
Back to top Generated by DocFX