io.cloudshiftdev.awscdk.services.logs.CfnDeliveryProps.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.logs
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 `CfnDelivery`.
*
* 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.logs.*;
* CfnDeliveryProps cfnDeliveryProps = CfnDeliveryProps.builder()
* .deliveryDestinationArn("deliveryDestinationArn")
* .deliverySourceName("deliverySourceName")
* // the properties below are optional
* .tags(List.of(CfnTag.builder()
* .key("key")
* .value("value")
* .build()))
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html)
*/
public interface CfnDeliveryProps {
/**
* The ARN of the delivery destination that is associated with this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverydestinationarn)
*/
public fun deliveryDestinationArn(): String
/**
* The name of the delivery source that is associated with this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverysourcename)
*/
public fun deliverySourceName(): String
/**
* The tags that have been assigned to this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-tags)
*/
public fun tags(): List = unwrap(this).getTags()?.map(CfnTag::wrap) ?: emptyList()
/**
* A builder for [CfnDeliveryProps]
*/
@CdkDslMarker
public interface Builder {
/**
* @param deliveryDestinationArn The ARN of the delivery destination that is associated with
* this delivery.
*/
public fun deliveryDestinationArn(deliveryDestinationArn: String)
/**
* @param deliverySourceName The name of the delivery source that is associated with this
* delivery.
*/
public fun deliverySourceName(deliverySourceName: String)
/**
* @param tags The tags that have been assigned to this delivery.
*/
public fun tags(tags: List)
/**
* @param tags The tags that have been assigned to this delivery.
*/
public fun tags(vararg tags: CfnTag)
}
private class BuilderImpl : Builder {
private val cdkBuilder: software.amazon.awscdk.services.logs.CfnDeliveryProps.Builder =
software.amazon.awscdk.services.logs.CfnDeliveryProps.builder()
/**
* @param deliveryDestinationArn The ARN of the delivery destination that is associated with
* this delivery.
*/
override fun deliveryDestinationArn(deliveryDestinationArn: String) {
cdkBuilder.deliveryDestinationArn(deliveryDestinationArn)
}
/**
* @param deliverySourceName The name of the delivery source that is associated with this
* delivery.
*/
override fun deliverySourceName(deliverySourceName: String) {
cdkBuilder.deliverySourceName(deliverySourceName)
}
/**
* @param tags The tags that have been assigned to this delivery.
*/
override fun tags(tags: List) {
cdkBuilder.tags(tags.map(CfnTag.Companion::unwrap))
}
/**
* @param tags The tags that have been assigned to this delivery.
*/
override fun tags(vararg tags: CfnTag): Unit = tags(tags.toList())
public fun build(): software.amazon.awscdk.services.logs.CfnDeliveryProps = cdkBuilder.build()
}
private class Wrapper(
cdkObject: software.amazon.awscdk.services.logs.CfnDeliveryProps,
) : CdkObject(cdkObject),
CfnDeliveryProps {
/**
* The ARN of the delivery destination that is associated with this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverydestinationarn)
*/
override fun deliveryDestinationArn(): String = unwrap(this).getDeliveryDestinationArn()
/**
* The name of the delivery source that is associated with this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-deliverysourcename)
*/
override fun deliverySourceName(): String = unwrap(this).getDeliverySourceName()
/**
* The tags that have been assigned to this delivery.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-delivery.html#cfn-logs-delivery-tags)
*/
override fun tags(): List = unwrap(this).getTags()?.map(CfnTag::wrap) ?: emptyList()
}
public companion object {
public operator fun invoke(block: Builder.() -> Unit = {}): CfnDeliveryProps {
val builderImpl = BuilderImpl()
return Wrapper(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.logs.CfnDeliveryProps):
CfnDeliveryProps = CdkObjectWrappers.wrap(cdkObject) as? CfnDeliveryProps ?:
Wrapper(cdkObject)
internal fun unwrap(wrapped: CfnDeliveryProps):
software.amazon.awscdk.services.logs.CfnDeliveryProps = (wrapped as CdkObject).cdkObject as
software.amazon.awscdk.services.logs.CfnDeliveryProps
}
}