Show / Hide Table of Contents

Class CfnTablePropsMixin.S3BucketSourceProperty

The S3 bucket that is being imported from.

Inheritance
object
CfnTablePropsMixin.S3BucketSourceProperty
Implements
CfnTablePropsMixin.IS3BucketSourceProperty
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.DynamoDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTablePropsMixin.S3BucketSourceProperty : CfnTablePropsMixin.IS3BucketSourceProperty
Syntax (vb)
Public Class CfnTablePropsMixin.S3BucketSourceProperty Implements CfnTablePropsMixin.IS3BucketSourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-s3bucketsource.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.DynamoDB;

             var s3BucketSourceProperty = new S3BucketSourceProperty {
                 S3Bucket = "s3Bucket",
                 S3BucketOwner = "s3BucketOwner",
                 S3KeyPrefix = "s3KeyPrefix"
             };

Synopsis

Constructors

S3BucketSourceProperty()

The S3 bucket that is being imported from.

Properties

S3Bucket

The S3 bucket that is being imported from.

S3BucketOwner

The account number of the S3 bucket that is being imported from.

S3KeyPrefix

The key prefix shared by all S3 Objects that are being imported.

Constructors

S3BucketSourceProperty()

The S3 bucket that is being imported from.

public S3BucketSourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-s3bucketsource.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.DynamoDB;

             var s3BucketSourceProperty = new S3BucketSourceProperty {
                 S3Bucket = "s3Bucket",
                 S3BucketOwner = "s3BucketOwner",
                 S3KeyPrefix = "s3KeyPrefix"
             };

Properties

S3Bucket

The S3 bucket that is being imported from.

public string? S3Bucket { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-s3bucketsource.html#cfn-dynamodb-table-s3bucketsource-s3bucket

S3BucketOwner

The account number of the S3 bucket that is being imported from.

public string? S3BucketOwner { get; set; }
Property Value

string

Remarks

If the bucket is owned by the requester this is optional.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-s3bucketsource.html#cfn-dynamodb-table-s3bucketsource-s3bucketowner

S3KeyPrefix

The key prefix shared by all S3 Objects that are being imported.

public string? S3KeyPrefix { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-s3bucketsource.html#cfn-dynamodb-table-s3bucketsource-s3keyprefix

Implements

CfnTablePropsMixin.IS3BucketSourceProperty
Back to top Generated by DocFX