Class: Aws::DynamoDB::Types::S3BucketSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::DynamoDB::Types::S3BucketSource
- Defined in:
- gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb
Overview
The S3 bucket that is being imported from.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_bucket ⇒ String
The S3 bucket that is being imported from.
-
#s3_bucket_owner ⇒ String
The account number of the S3 bucket that is being imported from.
-
#s3_key_prefix ⇒ String
The key prefix shared by all S3 Objects that are being imported.
Instance Attribute Details
#s3_bucket ⇒ String
The S3 bucket that is being imported from.
7833 7834 7835 7836 7837 7838 7839 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7833 class S3BucketSource < Struct.new( :s3_bucket_owner, :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_bucket_owner ⇒ String
The account number of the S3 bucket that is being imported from. If the bucket is owned by the requester this is optional.
7833 7834 7835 7836 7837 7838 7839 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7833 class S3BucketSource < Struct.new( :s3_bucket_owner, :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |
#s3_key_prefix ⇒ String
The key prefix shared by all S3 Objects that are being imported.
7833 7834 7835 7836 7837 7838 7839 |
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 7833 class S3BucketSource < Struct.new( :s3_bucket_owner, :s3_bucket, :s3_key_prefix) SENSITIVE = [] include Aws::Structure end |