interface SpacingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SpacingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SpacingProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SpacingProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SpacingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SpacingProperty |
The configuration of spacing (often a margin or padding).
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 spacingProperty: quicksight_mixins.CfnAnalysisPropsMixin.SpacingProperty = {
bottom: 'bottom',
left: 'left',
right: 'right',
top: 'top',
};
Properties
| Name | Type | Description |
|---|---|---|
| bottom? | string | Define the bottom spacing. |
| left? | string | Define the left spacing. |
| right? | string | Define the right spacing. |
| top? | string | Define the top spacing. |
bottom?
Type:
string
(optional)
Define the bottom spacing.
left?
Type:
string
(optional)
Define the left spacing.
right?
Type:
string
(optional)
Define the right spacing.
top?
Type:
string
(optional)
Define the top spacing.

.NET
Go
Java
Python
TypeScript