Format

Format transforms change the format, structure, or shape of data.

format.to.base64

Encodes a string to Base64.

Settings

FieldTypeDescriptionRequired
object.source_keystringRetrieves a value from an object for transformation.No
object.target_keystringPlaces a value into an object after transformation.No

Example

sub.transform.format.to.base64()
sub.tf.fmt.to.b64()

format.from.base64

Decodes a string from Base64.

Settings

FieldTypeDescriptionRequired
object.source_keystringRetrieves a value from an object for transformation.No
object.target_keystringPlaces a value into an object after transformation.No

Example

sub.transform.format.from.base64()
sub.tf.fmt.from.b64()

format.to.gzip

Compresses data to gzip.

Settings

FieldTypeDescriptionRequired
object.source_keystringRetrieves a value from an object for transformation.No
object.target_keystringPlaces a value into an object after transformation.No

Example

sub.transform.format.to.gzip()
sub.tf.fmt.to.gz()

format.from.gzip

Decompresses data from gzip.

Settings

FieldTypeDescriptionRequired
object.source_keystringRetrieves a value from an object for transformation.No
object.target_keystringPlaces a value into an object after transformation.No

Example

sub.transform.format.from.gzip()
sub.tf.fmt.from.gzip()

format.from.pretty_print

Reverses pretty print JSON text formatting. This transform cannot be run with concurrency enabled.

Settings

FieldTypeDescriptionRequired
object.source_keystringRetrieves a value from an object for transformation.No
object.target_keystringPlaces a value into an object after transformation.No

Example

sub.transform.format.from.pretty_print()
sub.tf.fmt.from.pretty_print()