java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.cloudwatch.Spacer
All Implemented Interfaces:
IWidget, software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:36.905Z") @Stability(Stable) public class Spacer extends software.amazon.jsii.JsiiObject implements IWidget
A widget that doesn't display anything but takes up space.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.cloudwatch.*;
 Spacer spacer = Spacer.Builder.create()
         .height(123)
         .width(123)
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    A fluent builder for Spacer.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode

    Nested classes/interfaces inherited from interface software.amazon.awscdk.services.cloudwatch.IWidget

    IWidget.Jsii$Default, IWidget.Jsii$Proxy
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
     
     
    protected
    Spacer(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    Spacer(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    The amount of vertical grid units the widget will take up.
    The amount of horizontal grid units the widget will take up.
    void
    Place the widget at a given position.
    Return the widget JSON for use in the dashboard.

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.awscdk.services.cloudwatch.IWidget

    getWarnings

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • Spacer

      protected Spacer(software.amazon.jsii.JsiiObjectRef objRef)
    • Spacer

      protected Spacer(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • Spacer

      @Stability(Stable) public Spacer(@Nullable SpacerProps props)
      Parameters:
      props -
    • Spacer

      @Stability(Stable) public Spacer()
  • Method Details

    • position

      @Stability(Stable) public void position(@NotNull Number _x, @NotNull Number _y)
      Place the widget at a given position.

      Specified by:
      position in interface IWidget
      Parameters:
      _x - This parameter is required.
      _y - This parameter is required.
    • toJson

      @Stability(Stable) @NotNull public List<Object> toJson()
      Return the widget JSON for use in the dashboard.
      Specified by:
      toJson in interface IWidget
    • getHeight

      @Stability(Stable) @NotNull public Number getHeight()
      The amount of vertical grid units the widget will take up.
      Specified by:
      getHeight in interface IWidget
    • getWidth

      @Stability(Stable) @NotNull public Number getWidth()
      The amount of horizontal grid units the widget will take up.
      Specified by:
      getWidth in interface IWidget