interface NegativeFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnTopicPropsMixin.NegativeFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnTopicPropsMixin_NegativeFormatProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnTopicPropsMixin.NegativeFormatProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnTopicPropsMixin.NegativeFormatProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnTopicPropsMixin » NegativeFormatProperty |
A structure that represents a negative format.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const negativeFormatProperty: quicksight_mixins.CfnTopicPropsMixin.NegativeFormatProperty = {
prefix: 'prefix',
suffix: 'suffix',
};
Properties
| Name | Type | Description |
|---|---|---|
| prefix? | string | The prefix for a negative format. |
| suffix? | string | The suffix for a negative format. |
prefix?
Type:
string
(optional)
The prefix for a negative format.
suffix?
Type:
string
(optional)
The suffix for a negative format.

.NET
Go
Java
Python
TypeScript