interface LazyListValueOptions
Language | Type name |
---|---|
![]() | Amazon.CDK.LazyListValueOptions |
![]() | github.com/aws/aws-cdk-go/awscdk/v2#LazyListValueOptions |
![]() | software.amazon.awscdk.LazyListValueOptions |
![]() | aws_cdk.LazyListValueOptions |
![]() | aws-cdk-lib » LazyListValueOptions |
Options for creating a lazy list token.
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-lib';
const lazyListValueOptions: cdk.LazyListValueOptions = {
displayHint: 'displayHint',
omitEmpty: false,
};
Properties
Name | Type | Description |
---|---|---|
display | string | Use the given name as a display hint. |
omit | boolean | If the produced list is empty, return 'undefined' instead. |
displayHint?
Type:
string
(optional, default: No hint)
Use the given name as a display hint.
omitEmpty?
Type:
boolean
(optional, default: false)
If the produced list is empty, return 'undefined' instead.