io.cloudshiftdev.awscdk.services.lex.CfnResourcePolicy.kt Maven / Gradle / Ivy
The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")
package io.cloudshiftdev.awscdk.services.lex
import io.cloudshiftdev.awscdk.CfnResource
import io.cloudshiftdev.awscdk.IInspectable
import io.cloudshiftdev.awscdk.TreeInspector
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.Any
import kotlin.String
import kotlin.Unit
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct
/**
* Amazon Lex V2 is the only supported version in AWS CloudFormation .
*
* Specifies a new resource policy with the specified policy statements.
*
* 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.lex.*;
* Object policy;
* CfnResourcePolicy cfnResourcePolicy = CfnResourcePolicy.Builder.create(this,
* "MyCfnResourcePolicy")
* .policy(policy)
* .resourceArn("resourceArn")
* .build();
* ```
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html)
*/
public open class CfnResourcePolicy(
cdkObject: software.amazon.awscdk.services.lex.CfnResourcePolicy,
) : CfnResource(cdkObject),
IInspectable {
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnResourcePolicyProps,
) :
this(software.amazon.awscdk.services.lex.CfnResourcePolicy(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
id, props.let(CfnResourcePolicyProps.Companion::unwrap))
)
public constructor(
scope: CloudshiftdevConstructsConstruct,
id: String,
props: CfnResourcePolicyProps.Builder.() -> Unit,
) : this(scope, id, CfnResourcePolicyProps(props)
)
/**
* The identifier of the resource policy.
*/
public open fun attrId(): String = unwrap(this).getAttrId()
/**
* Specifies the current revision of a resource policy.
*/
public open fun attrRevisionId(): String = unwrap(this).getAttrRevisionId()
/**
* Examines the CloudFormation resource and discloses attributes.
*
* @param inspector tree inspector to collect and process attributes.
*/
public override fun inspect(inspector: TreeInspector) {
unwrap(this).inspect(inspector.let(TreeInspector.Companion::unwrap))
}
/**
* A resource policy to add to the resource.
*/
public open fun policy(): Any = unwrap(this).getPolicy()
/**
* A resource policy to add to the resource.
*/
public open fun policy(`value`: Any) {
unwrap(this).setPolicy(`value`)
}
/**
* The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
*/
public open fun resourceArn(): String = unwrap(this).getResourceArn()
/**
* The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached to.
*/
public open fun resourceArn(`value`: String) {
unwrap(this).setResourceArn(`value`)
}
/**
* A fluent builder for [io.cloudshiftdev.awscdk.services.lex.CfnResourcePolicy].
*/
@CdkDslMarker
public interface Builder {
/**
* A resource policy to add to the resource.
*
* The policy is a JSON structure that contains one or more statements that define the policy.
* The policy must follow IAM syntax. If the policy isn't valid, Amazon Lex returns a validation
* exception.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html#cfn-lex-resourcepolicy-policy)
* @param policy A resource policy to add to the resource.
*/
public fun policy(policy: Any)
/**
* The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached
* to.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html#cfn-lex-resourcepolicy-resourcearn)
* @param resourceArn The Amazon Resource Name (ARN) of the bot or bot alias that the resource
* policy is attached to.
*/
public fun resourceArn(resourceArn: String)
}
private class BuilderImpl(
scope: SoftwareConstructsConstruct,
id: String,
) : Builder {
private val cdkBuilder: software.amazon.awscdk.services.lex.CfnResourcePolicy.Builder =
software.amazon.awscdk.services.lex.CfnResourcePolicy.Builder.create(scope, id)
/**
* A resource policy to add to the resource.
*
* The policy is a JSON structure that contains one or more statements that define the policy.
* The policy must follow IAM syntax. If the policy isn't valid, Amazon Lex returns a validation
* exception.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html#cfn-lex-resourcepolicy-policy)
* @param policy A resource policy to add to the resource.
*/
override fun policy(policy: Any) {
cdkBuilder.policy(policy)
}
/**
* The Amazon Resource Name (ARN) of the bot or bot alias that the resource policy is attached
* to.
*
* [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-resourcepolicy.html#cfn-lex-resourcepolicy-resourcearn)
* @param resourceArn The Amazon Resource Name (ARN) of the bot or bot alias that the resource
* policy is attached to.
*/
override fun resourceArn(resourceArn: String) {
cdkBuilder.resourceArn(resourceArn)
}
public fun build(): software.amazon.awscdk.services.lex.CfnResourcePolicy = cdkBuilder.build()
}
public companion object {
public val CFN_RESOURCE_TYPE_NAME: String =
software.amazon.awscdk.services.lex.CfnResourcePolicy.CFN_RESOURCE_TYPE_NAME
public operator fun invoke(
scope: CloudshiftdevConstructsConstruct,
id: String,
block: Builder.() -> Unit = {},
): CfnResourcePolicy {
val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
return CfnResourcePolicy(builderImpl.apply(block).build())
}
internal fun wrap(cdkObject: software.amazon.awscdk.services.lex.CfnResourcePolicy):
CfnResourcePolicy = CfnResourcePolicy(cdkObject)
internal fun unwrap(wrapped: CfnResourcePolicy):
software.amazon.awscdk.services.lex.CfnResourcePolicy = wrapped.cdkObject as
software.amazon.awscdk.services.lex.CfnResourcePolicy
}
}