io.cloudshiftdev.awscdk.services.cloudwatch.ConcreteWidget.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.cloudwatch
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Any
import kotlin.Number
import kotlin.String
import kotlin.collections.List
import kotlin.collections.Map
/**
* A real CloudWatch widget that has its own fixed size and remembers its position.
*
* This is in contrast to other widgets which exist for layout purposes.
*/
public abstract class ConcreteWidget(
cdkObject: software.amazon.awscdk.services.cloudwatch.ConcreteWidget,
) : CdkObject(cdkObject),
IWidget {
/**
* The amount of vertical grid units the widget will take up.
*/
public override fun height(): Number = unwrap(this).getHeight()
/**
* Place the widget at a given position.
*
* @param x
* @param y
*/
public override fun position(x: Number, y: Number) {
unwrap(this).position(x, y)
}
/**
* Return the widget JSON for use in the dashboard.
*/
public override fun toJson(): List = unwrap(this).toJson()
/**
* Any warnings that are produced as a result of putting together this widget.
*/
public override fun warnings(): List = unwrap(this).getWarnings() ?: emptyList()
/**
* Any warnings that are produced as a result of putting together this widget.
*/
public override fun warningsV2(): Map = unwrap(this).getWarningsV2() ?: emptyMap()
/**
* The amount of horizontal grid units the widget will take up.
*/
public override fun width(): Number = unwrap(this).getWidth()
private class Wrapper(
cdkObject: software.amazon.awscdk.services.cloudwatch.ConcreteWidget,
) : ConcreteWidget(cdkObject)
public companion object {
internal fun wrap(cdkObject: software.amazon.awscdk.services.cloudwatch.ConcreteWidget):
ConcreteWidget = CdkObjectWrappers.wrap(cdkObject) as? ConcreteWidget ?: Wrapper(cdkObject)
internal fun unwrap(wrapped: ConcreteWidget):
software.amazon.awscdk.services.cloudwatch.ConcreteWidget = (wrapped as CdkObject).cdkObject
as software.amazon.awscdk.services.cloudwatch.ConcreteWidget
}
}