ReverseOptions

class aws_cdk.core.ReverseOptions(*, fail_concat=None)

Bases: object

Options for the ‘reverse()’ operation.

Parameters:

fail_concat (Optional[bool]) – Fail if the given string is a concatenation. If false, just return undefined. Default: true

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.core as cdk

reverse_options = cdk.ReverseOptions(
    fail_concat=False
)

Attributes

fail_concat

Fail if the given string is a concatenation.

If false, just return undefined.

Default:

true