Class: Aws::Glue::Types::DDBELTConnectionOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::DDBELTConnectionOptions
- Defined in:
- gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb
Overview
Specifies connection options for DynamoDB ELT (Extract, Load, Transform) operations. This structure contains configuration parameters for connecting to and extracting data from DynamoDB tables using the ELT connector.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dynamodb_export ⇒ String
Specifies the export type for DynamoDB data extraction.
-
#dynamodb_s3_bucket ⇒ String
The name of the Amazon S3 bucket used for intermediate storage during the DynamoDB ELT process.
-
#dynamodb_s3_bucket_owner ⇒ String
The Amazon Web Services account ID of the owner of the S3 bucket specified in
DynamodbS3Bucket
. -
#dynamodb_s3_prefix ⇒ String
The S3 object key prefix for files stored in the intermediate S3 bucket during the DynamoDB ELT process.
-
#dynamodb_sts_role_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Web Services Security Token Service (STS) role to assume for accessing DynamoDB and S3 resources during the ELT operation.
-
#dynamodb_table_arn ⇒ String
The Amazon Resource Name (ARN) of the DynamoDB table to extract data from.
-
#dynamodb_unnest_ddb_json ⇒ Boolean
A boolean value that specifies whether to unnest DynamoDB JSON format during data extraction.
Instance Attribute Details
#dynamodb_export ⇒ String
Specifies the export type for DynamoDB data extraction. This parameter determines how data is exported from the DynamoDB table during the ELT process.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_s3_bucket ⇒ String
The name of the Amazon S3 bucket used for intermediate storage during the DynamoDB ELT process. This bucket is used to temporarily store exported DynamoDB data before it is processed by the ELT job.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_s3_bucket_owner ⇒ String
The Amazon Web Services account ID of the owner of the S3 bucket
specified in DynamodbS3Bucket
. This parameter is required when the
S3 bucket is owned by a different Amazon Web Services account than
the one running the ELT job, enabling cross-account access to the
intermediate storage bucket.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_s3_prefix ⇒ String
The S3 object key prefix for files stored in the intermediate S3 bucket during the DynamoDB ELT process. This prefix helps organize and identify the temporary files created during data extraction.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_sts_role_arn ⇒ String
The Amazon Resource Name (ARN) of the Amazon Web Services Security Token Service (STS) role to assume for accessing DynamoDB and S3 resources during the ELT operation. This role must have the necessary permissions to read from the DynamoDB table and write to the intermediate S3 bucket.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_table_arn ⇒ String
The Amazon Resource Name (ARN) of the DynamoDB table to extract data from. This parameter specifies the source table for the ELT operation.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |
#dynamodb_unnest_ddb_json ⇒ Boolean
A boolean value that specifies whether to unnest DynamoDB JSON
format during data extraction. When set to true
, the connector
will flatten nested JSON structures from DynamoDB items. When set to
false
, the original DynamoDB JSON structure is preserved.
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 7745 class DDBELTConnectionOptions < Struct.new( :dynamodb_export, :dynamodb_unnest_ddb_json, :dynamodb_table_arn, :dynamodb_s3_bucket, :dynamodb_s3_prefix, :dynamodb_s3_bucket_owner, :dynamodb_sts_role_arn) SENSITIVE = [] include Aws::Structure end |