public abstract static class DynamoDBIO.Read<T> extends PTransform<PBegin,PCollection<T>>
getScanRequestFn()
and emit an element of type T
for each ScanResponse
using the mapping function getScanResponseMapperFn()
.name, resourceHints
Constructor and Description |
---|
Read() |
compose, compose, getAdditionalInputs, getDefaultOutputCoder, getDefaultOutputCoder, getDefaultOutputCoder, getKindString, getName, getResourceHints, populateDisplayData, setResourceHints, toString, validate, validate
@Deprecated public DynamoDBIO.Read<T> withDynamoDbClientProvider(DynamoDbClientProvider clientProvider)
withClientConfiguration(ClientConfiguration)
instead. Alternatively
you can configure a custom ClientBuilderFactory
in AwsOptions
.@Deprecated public DynamoDBIO.Read<T> withDynamoDbClientProvider(AwsCredentialsProvider credentials, java.lang.String region, java.net.URI endpoint)
withClientConfiguration(ClientConfiguration)
instead.@Deprecated public DynamoDBIO.Read<T> withDynamoDbClientProvider(AwsCredentialsProvider credentials, java.lang.String region)
withClientConfiguration(ClientConfiguration)
instead.public DynamoDBIO.Read<T> withClientConfiguration(ClientConfiguration config)
public DynamoDBIO.Read<T> withScanRequestFn(SerializableFunction<java.lang.Void,ScanRequest> fn)
public DynamoDBIO.Read<T> withScanResponseMapperFn(SerializableFunction<ScanResponse,T> scanResultMapperFn)
public DynamoDBIO.Read<java.util.List<java.util.Map<java.lang.String,AttributeValue>>> items()
public DynamoDBIO.Read<T> withCoder(Coder<T> coder)
public PCollection<T> expand(PBegin input)
PTransform
PTransform
should be expanded on the given
InputT
.
NOTE: This method should not be called directly. Instead apply the PTransform
should
be applied to the InputT
using the apply
method.
Composite transforms, which are defined in terms of other transforms, should return the output of one of the composed transforms. Non-composite transforms, which do not apply any transforms internally, should return a new unbound output and register evaluators (via backend-specific registration methods).
expand
in class PTransform<PBegin,PCollection<T>>