Class CfnTablePropsMixin.S3BucketSourceProperty
The S3 bucket that is being imported from.
Implements
Inherited Members
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
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
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
Remarks
S3BucketOwner
The account number of the S3 bucket that is being imported from.
public string? S3BucketOwner { get; set; }
Property Value
Remarks
If the bucket is owned by the requester this is optional.
S3KeyPrefix
The key prefix shared by all S3 Objects that are being imported.
public string? S3KeyPrefix { get; set; }