SpacerProps
- class aws_cdk.aws_cloudwatch.SpacerProps(*, height=None, width=None)
Bases:
objectProps of the spacer.
- Parameters:
height (
Union[int,float,None]) – Height of the spacer. Default: : 1width (
Union[int,float,None]) – Width of the spacer. Default: 1
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_cloudwatch as cloudwatch spacer_props = cloudwatch.SpacerProps( height=123, width=123 )
Attributes
- height
Height of the spacer.
- Default:
: 1
- width
Width of the spacer.
- Default:
1