CrawlerDynamodbTargetArgs

data class CrawlerDynamodbTargetArgs(val path: Output<String>, val scanAll: Output<Boolean>? = null, val scanRate: Output<Double>? = null) : ConvertibleToJava<CrawlerDynamodbTargetArgs>

Constructors

Link copied to clipboard
constructor(path: Output<String>, scanAll: Output<Boolean>? = null, scanRate: Output<Double>? = null)

Properties

Link copied to clipboard
val path: Output<String>

The name of the DynamoDB table to crawl.

Link copied to clipboard
val scanAll: Output<Boolean>? = null

Indicates whether to scan all the records, or to sample rows from the table. Scanning all the records can take a long time when the table is not a high throughput table. defaults to true.

Link copied to clipboard
val scanRate: Output<Double>? = null

The percentage of the configured read capacity units to use by the AWS Glue crawler. The valid values are null or a value between 0.1 to 1.5.

Functions

Link copied to clipboard
open override fun toJava(): CrawlerDynamodbTargetArgs