Interface DDBELTConnectionOptions.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<DDBELTConnectionOptions.Builder,
,DDBELTConnectionOptions> SdkBuilder<DDBELTConnectionOptions.Builder,
,DDBELTConnectionOptions> SdkPojo
- Enclosing class:
DDBELTConnectionOptions
-
Method Summary
Modifier and TypeMethodDescriptiondynamodbExport
(String dynamodbExport) Specifies the export type for DynamoDB data extraction.dynamodbExport
(DdbExportType dynamodbExport) Specifies the export type for DynamoDB data extraction.dynamodbS3Bucket
(String dynamodbS3Bucket) The name of the Amazon S3 bucket used for intermediate storage during the DynamoDB ELT process.dynamodbS3BucketOwner
(String dynamodbS3BucketOwner) The Amazon Web Services account ID of the owner of the S3 bucket specified inDynamodbS3Bucket
.dynamodbS3Prefix
(String dynamodbS3Prefix) The S3 object key prefix for files stored in the intermediate S3 bucket during the DynamoDB ELT process.dynamodbStsRoleArn
(String dynamodbStsRoleArn) 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.dynamodbTableArn
(String dynamodbTableArn) The Amazon Resource Name (ARN) of the DynamoDB table to extract data from.dynamodbUnnestDDBJson
(Boolean dynamodbUnnestDDBJson) A boolean value that specifies whether to unnest DynamoDB JSON format during data extraction.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
dynamodbExport
Specifies the export type for DynamoDB data extraction. This parameter determines how data is exported from the DynamoDB table during the ELT process.
- Parameters:
dynamodbExport
- Specifies the export type for DynamoDB data extraction. This parameter determines how data is exported from the DynamoDB table during the ELT process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dynamodbExport
Specifies the export type for DynamoDB data extraction. This parameter determines how data is exported from the DynamoDB table during the ELT process.
- Parameters:
dynamodbExport
- Specifies the export type for DynamoDB data extraction. This parameter determines how data is exported from the DynamoDB table during the ELT process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dynamodbUnnestDDBJson
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 tofalse
, the original DynamoDB JSON structure is preserved.- Parameters:
dynamodbUnnestDDBJson
- A boolean value that specifies whether to unnest DynamoDB JSON format during data extraction. When set totrue
, the connector will flatten nested JSON structures from DynamoDB items. When set tofalse
, the original DynamoDB JSON structure is preserved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbTableArn
The Amazon Resource Name (ARN) of the DynamoDB table to extract data from. This parameter specifies the source table for the ELT operation.
- Parameters:
dynamodbTableArn
- The Amazon Resource Name (ARN) of the DynamoDB table to extract data from. This parameter specifies the source table for the ELT operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbS3Bucket
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.
- Parameters:
dynamodbS3Bucket
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbS3Prefix
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.
- Parameters:
dynamodbS3Prefix
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbS3BucketOwner
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.- Parameters:
dynamodbS3BucketOwner
- The Amazon Web Services account ID of the owner of the S3 bucket specified inDynamodbS3Bucket
. 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbStsRoleArn
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.
- Parameters:
dynamodbStsRoleArn
- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-