Struct migrate_state_dynamodb::DdbStateLockBuilder [−][src]
pub struct DdbStateLockBuilder(_);
Expand description
Builder for DdbStateLock
object, see its methods for available configurations.
To finish building the object call build()
method.
Implementations
Override partition key attribute name used for the stored migration state record.
Default: "partition_key"
Override partition key attribute value used for stored migration state record.
Default: "migrate-state"
(string DynamoDB type)
Override sort key attribute name used for stored migration state record.
Default: no sort key attribute is added to the record.
If sort_key_attr_val
was not set, then
it’s value will be set to "migrate-state"
(string DynamoDB type)
Override sort key attribute value used for stored migration state record.
Default: no sort key attribute is added to the record.
If sort_key_attr_name
was not set, then
it’s value will be set to "sort_key"
Override payload attribute name used for stored migration state record.
Default: "payload"
Consume the builder and return final configured DdbStateLock
object