interface ReverseOptions
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.ReverseOptions | 
|  Java | software.amazon.awscdk.core.ReverseOptions | 
|  Python | aws_cdk.core.ReverseOptions | 
|  TypeScript (source) | @aws-cdk/core»ReverseOptions | 
Options for the 'reverse()' operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as cdk from '@aws-cdk/core';
const reverseOptions: cdk.ReverseOptions = {
  failConcat: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| fail | boolean | Fail if the given string is a concatenation. | 
failConcat?
Type:
boolean
(optional, default: true)
Fail if the given string is a concatenation.
If false, just return undefined.
