io.cloudshiftdev.awscdk.services.iot.CfnDimensionProps.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.iot
import io.cloudshiftdev.awscdk.CfnTag
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObject
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.String
import kotlin.Unit
import kotlin.collections.List
/**
* Properties for defining a `CfnDimension`.
*
* Example:
*
* ```
* // The code below shows an example of how to instantiate this type.
* // The values are placeholders you should change.
* import io.cloudshiftdev.awscdk.services.iot.*;
* CfnDimensionProps cfnDimensionProps = CfnDimensionProps.builder()
* .stringValues(List.of("stringValues"))
* .type("type")
* // the properties below are optional
* .name("name")
* .tags(List.of(CfnTag.builder()
* .key("key")
* .value("value")
* .build()))
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html)
*/
public interface CfnDimensionProps {
/**
* A unique identifier for the dimension.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-name)
*/
public fun name(): String? = unwrap(this).getName()
/**
* Specifies the value or list of values for the dimension.
*
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-stringvalues)
*/
public fun stringValues(): List
/**
* Metadata that can be used to manage the dimension.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-tags)
*/
public fun tags(): List = unwrap(this).getTags()?.map(CfnTag::wrap) ?: emptyList()
/**
* Specifies the type of dimension.
*
* Supported types: `TOPIC_FILTER.`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-type)
*/
public fun type(): String
/**
* A builder for [CfnDimensionProps]
*/
@CdkDslMarker
public interface Builder {
/**
* @param name A unique identifier for the dimension.
*/
public fun name(name: String)
/**
* @param stringValues Specifies the value or list of values for the dimension.
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*/
public fun stringValues(stringValues: List)
/**
* @param stringValues Specifies the value or list of values for the dimension.
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*/
public fun stringValues(vararg stringValues: String)
/**
* @param tags Metadata that can be used to manage the dimension.
*/
public fun tags(tags: List)
/**
* @param tags Metadata that can be used to manage the dimension.
*/
public fun tags(vararg tags: CfnTag)
/**
* @param type Specifies the type of dimension.
* Supported types: `TOPIC_FILTER.`
*/
public fun type(type: String)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.services.iot.CfnDimensionProps.Builder =
software.amazon.awscdk.services.iot.CfnDimensionProps.builder()
/**
* @param name A unique identifier for the dimension.
*/
override fun name(name: String) {
cdkBuilder.name(name)
}
/**
* @param stringValues Specifies the value or list of values for the dimension.
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*/
override fun stringValues(stringValues: List) {
cdkBuilder.stringValues(stringValues)
}
/**
* @param stringValues Specifies the value or list of values for the dimension.
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*/
override fun stringValues(vararg stringValues: String): Unit =
stringValues(stringValues.toList())
/**
* @param tags Metadata that can be used to manage the dimension.
*/
override fun tags(tags: List) {
cdkBuilder.tags(tags.map(CfnTag.Companion::unwrap))
}
/**
* @param tags Metadata that can be used to manage the dimension.
*/
override fun tags(vararg tags: CfnTag): Unit = tags(tags.toList())
/**
* @param type Specifies the type of dimension.
* Supported types: `TOPIC_FILTER.`
*/
override fun type(type: String) {
cdkBuilder.type(type)
}
public fun build(): software.amazon.awscdk.services.iot.CfnDimensionProps = cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.iot.CfnDimensionProps,
) : CdkObject(cdkObject),
CfnDimensionProps {
/**
* A unique identifier for the dimension.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-name)
*/
override fun name(): String? = unwrap(this).getName()
/**
* Specifies the value or list of values for the dimension.
*
* For `TOPIC_FILTER` dimensions, this is a pattern used to match the MQTT topic (for example,
* "admin/#").
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-stringvalues)
*/
override fun stringValues(): List = unwrap(this).getStringValues()
/**
* Metadata that can be used to manage the dimension.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-tags)
*/
override fun tags(): List = unwrap(this).getTags()?.map(CfnTag::wrap) ?: emptyList()
/**
* Specifies the type of dimension.
*
* Supported types: `TOPIC_FILTER.`
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-dimension.html#cfn-iot-dimension-type)
*/
override fun type(): String = unwrap(this).getType()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): CfnDimensionProps {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.iot.CfnDimensionProps):
CfnDimensionProps = CdkObjectWrappers.wrap(cdkObject) as? CfnDimensionProps ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: CfnDimensionProps):
software.amazon.awscdk.services.iot.CfnDimensionProps = (wrapped as CdkObject).cdkObject as
software.amazon.awscdk.services.iot.CfnDimensionProps
}
}