interface FreeFormLayoutElementProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.FreeFormLayoutElementProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_FreeFormLayoutElementProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.FreeFormLayoutElementProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.FreeFormLayoutElementProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDashboardPropsMixin » FreeFormLayoutElementProperty |
An element within a free-form layout.
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 freeFormLayoutElementProperty: quicksight_mixins.CfnDashboardPropsMixin.FreeFormLayoutElementProperty = {
backgroundStyle: {
color: 'color',
visibility: 'visibility',
},
borderRadius: 'borderRadius',
borderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
elementId: 'elementId',
elementType: 'elementType',
height: 'height',
loadingAnimation: {
visibility: 'visibility',
},
padding: 'padding',
renderingRules: [{
configurationOverrides: {
visibility: 'visibility',
},
expression: 'expression',
}],
selectedBorderStyle: {
color: 'color',
visibility: 'visibility',
width: 'width',
},
visibility: 'visibility',
width: 'width',
xAxisLocation: 'xAxisLocation',
yAxisLocation: 'yAxisLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| background | IResolvable | Free | The background style configuration of a free-form layout element. |
| border | string | The border radius of a free-form layout element. |
| border | IResolvable | Free | The border style configuration of a free-form layout element. |
| element | string | A unique identifier for an element within a free-form layout. |
| element | string | The type of element. |
| height? | string | The height of an element within a free-form layout. |
| loading | IResolvable | Loading | The loading animation configuration of a free-form layout element. |
| padding? | string | The padding of a free-form layout element. |
| rendering | IResolvable | (IResolvable | Sheet)[] | The rendering rules that determine when an element should be displayed within a free-form layout. |
| selected | IResolvable | Free | The border style configuration of a free-form layout element. |
| visibility? | string | The visibility of an element within a free-form layout. |
| width? | string | The width of an element within a free-form layout. |
| x | string | The x-axis coordinate of the element. |
| y | string | The y-axis coordinate of the element. |
backgroundStyle?
Type:
IResolvable | Free
(optional)
The background style configuration of a free-form layout element.
borderRadius?
Type:
string
(optional)
The border radius of a free-form layout element.
borderStyle?
Type:
IResolvable | Free
(optional)
The border style configuration of a free-form layout element.
elementId?
Type:
string
(optional)
A unique identifier for an element within a free-form layout.
elementType?
Type:
string
(optional)
The type of element.
height?
Type:
string
(optional)
The height of an element within a free-form layout.
loadingAnimation?
Type:
IResolvable | Loading
(optional)
The loading animation configuration of a free-form layout element.
padding?
Type:
string
(optional)
The padding of a free-form layout element.
renderingRules?
Type:
IResolvable | (IResolvable | Sheet)[]
(optional)
The rendering rules that determine when an element should be displayed within a free-form layout.
selectedBorderStyle?
Type:
IResolvable | Free
(optional)
The border style configuration of a free-form layout element.
This border style is used when the element is selected.
visibility?
Type:
string
(optional)
The visibility of an element within a free-form layout.
width?
Type:
string
(optional)
The width of an element within a free-form layout.
xAxisLocation?
Type:
string
(optional)
The x-axis coordinate of the element.
yAxisLocation?
Type:
string
(optional)
The y-axis coordinate of the element.

.NET
Go
Java
Python
TypeScript