Format
Format transforms change the format, structure, or shape of data.
format.to.base64
Encodes a string to Base64.
Settings
Field | Type | Description | Required |
---|---|---|---|
object.source_key | string | Retrieves a value from an object for transformation. | No |
object.target_key | string | Places 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
Field | Type | Description | Required |
---|---|---|---|
object.source_key | string | Retrieves a value from an object for transformation. | No |
object.target_key | string | Places 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
Field | Type | Description | Required |
---|---|---|---|
object.source_key | string | Retrieves a value from an object for transformation. | No |
object.target_key | string | Places 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
Field | Type | Description | Required |
---|---|---|---|
object.source_key | string | Retrieves a value from an object for transformation. | No |
object.target_key | string | Places 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
Field | Type | Description | Required |
---|---|---|---|
object.source_key | string | Retrieves a value from an object for transformation. | No |
object.target_key | string | Places a value into an object after transformation. | No |
Example
sub.transform.format.from.pretty_print()
sub.tf.fmt.from.pretty_print()
Updated 10 months ago