interface NegativeFormatProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnTopicPropsMixin.NegativeFormatProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnTopicPropsMixin_NegativeFormatProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnTopicPropsMixin.NegativeFormatProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnTopicPropsMixin.NegativeFormatProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const negativeFormatProperty: quicksight.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