All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.cloudshiftdev.awscdk.services.cloudformation.CfnModuleVersion.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package io.cloudshiftdev.awscdk.services.cloudformation

import io.cloudshiftdev.awscdk.CfnResource
import io.cloudshiftdev.awscdk.IInspectable
import io.cloudshiftdev.awscdk.IResolvable
import io.cloudshiftdev.awscdk.TreeInspector
import io.cloudshiftdev.awscdk.common.CdkDslMarker
import kotlin.String
import kotlin.Unit
import io.cloudshiftdev.constructs.Construct as CloudshiftdevConstructsConstruct
import software.constructs.Construct as SoftwareConstructsConstruct

/**
 * Registers the specified version of the module with the CloudFormation service.
 *
 * Registering a module makes it available for use in CloudFormation templates in your AWS account
 * and Region.
 *
 * To specify a module version as the default version, use the
 * `[`AWS::CloudFormation::ModuleDefaultVersion`](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduledefaultversion.html)`
 * resource.
 *
 * For more information using modules, see [Using modules to encapsulate and reuse resource
 * configurations](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/modules.html) and
 * [Registering
 * extensions](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/registry.html#registry-register)
 * in the *CloudFormation User Guide* . For information on developing modules, see [Developing
 * modules](https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/modules.html) in the
 * *CloudFormation CLI User Guide* .
 *
 * 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.cloudformation.*;
 * CfnModuleVersion cfnModuleVersion = CfnModuleVersion.Builder.create(this, "MyCfnModuleVersion")
 * .moduleName("moduleName")
 * .modulePackage("modulePackage")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html)
 */
public open class CfnModuleVersion(
  cdkObject: software.amazon.awscdk.services.cloudformation.CfnModuleVersion,
) : CfnResource(cdkObject),
    IInspectable {
  public constructor(
    scope: CloudshiftdevConstructsConstruct,
    id: String,
    props: CfnModuleVersionProps,
  ) :
      this(software.amazon.awscdk.services.cloudformation.CfnModuleVersion(scope.let(CloudshiftdevConstructsConstruct.Companion::unwrap),
      id, props.let(CfnModuleVersionProps.Companion::unwrap))
  )

  public constructor(
    scope: CloudshiftdevConstructsConstruct,
    id: String,
    props: CfnModuleVersionProps.Builder.() -> Unit,
  ) : this(scope, id, CfnModuleVersionProps(props)
  )

  /**
   * The Amazon Resource Name (ARN) of the extension.
   */
  public open fun attrArn(): String = unwrap(this).getAttrArn()

  /**
   * The description of the extension.
   */
  public open fun attrDescription(): String = unwrap(this).getAttrDescription()

  /**
   * The URL of a page providing detailed documentation for this module.
   */
  public open fun attrDocumentationUrl(): String = unwrap(this).getAttrDocumentationUrl()

  /**
   * Whether the specified extension version is set as the default version.
   *
   * This applies only to private extensions you have registered in your account, and extensions
   * published by AWS . For public third-party extensions, whether they are activated in your account,
   * CloudFormation returns `null` .
   */
  public open fun attrIsDefaultVersion(): IResolvable =
      unwrap(this).getAttrIsDefaultVersion().let(IResolvable::wrap)

  /**
   * The schema that defines the extension.
   *
   * For more information about extension schemas, see [Resource Provider
   * Schema](https://docs.aws.amazon.com/cloudformation-cli/latest/userguide/resource-type-schema.html)
   * in the *AWS CloudFormation Command Line Interface (CLI) User Guide* .
   */
  public open fun attrSchema(): String = unwrap(this).getAttrSchema()

  /**
   * When the specified private extension version was registered or activated in your account.
   */
  public open fun attrTimeCreated(): String = unwrap(this).getAttrTimeCreated()

  /**
   * The ID of this version of the module.
   */
  public open fun attrVersionId(): String = unwrap(this).getAttrVersionId()

  /**
   * The scope at which the extension is visible and usable in CloudFormation operations.
   *
   * Valid values include:
   *
   * * `PRIVATE` : The extension is only visible and usable within the account in which it is
   * registered. CloudFormation marks any extensions you register as `PRIVATE` .
   * * `PUBLIC` : The extension is publicly visible and usable within any AWS account.
   */
  public open fun attrVisibility(): String = unwrap(this).getAttrVisibility()

  /**
   * 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))
  }

  /**
   * The name of the module being registered.
   */
  public open fun moduleName(): String = unwrap(this).getModuleName()

  /**
   * The name of the module being registered.
   */
  public open fun moduleName(`value`: String) {
    unwrap(this).setModuleName(`value`)
  }

  /**
   * A URL to the S3 bucket containing the package that contains the template fragment and schema
   * files for the module version to register.
   */
  public open fun modulePackage(): String = unwrap(this).getModulePackage()

  /**
   * A URL to the S3 bucket containing the package that contains the template fragment and schema
   * files for the module version to register.
   */
  public open fun modulePackage(`value`: String) {
    unwrap(this).setModulePackage(`value`)
  }

  /**
   * A fluent builder for [io.cloudshiftdev.awscdk.services.cloudformation.CfnModuleVersion].
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * The name of the module being registered.
     *
     * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulename)
     * @param moduleName The name of the module being registered. 
     */
    public fun moduleName(moduleName: String)

    /**
     * A URL to the S3 bucket containing the package that contains the template fragment and schema
     * files for the module version to register.
     *
     *
     * The user registering the module version must be able to access the module package in the S3
     * bucket. That's, the user needs to have
     * [GetObject](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) permissions for
     * the package. For more information, see [Actions, Resources, and Condition Keys for Amazon
     * S3](https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html) in the *AWS Identity
     * and Access Management User Guide* .
     *
     *
     * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulepackage)
     * @param modulePackage A URL to the S3 bucket containing the package that contains the template
     * fragment and schema files for the module version to register. 
     */
    public fun modulePackage(modulePackage: String)
  }

  private class BuilderImpl(
    scope: SoftwareConstructsConstruct,
    id: String,
  ) : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.cloudformation.CfnModuleVersion.Builder
        = software.amazon.awscdk.services.cloudformation.CfnModuleVersion.Builder.create(scope, id)

    /**
     * The name of the module being registered.
     *
     * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulename)
     * @param moduleName The name of the module being registered. 
     */
    override fun moduleName(moduleName: String) {
      cdkBuilder.moduleName(moduleName)
    }

    /**
     * A URL to the S3 bucket containing the package that contains the template fragment and schema
     * files for the module version to register.
     *
     *
     * The user registering the module version must be able to access the module package in the S3
     * bucket. That's, the user needs to have
     * [GetObject](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetObject.html) permissions for
     * the package. For more information, see [Actions, Resources, and Condition Keys for Amazon
     * S3](https://docs.aws.amazon.com/IAM/latest/UserGuide/list_amazons3.html) in the *AWS Identity
     * and Access Management User Guide* .
     *
     *
     * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-moduleversion.html#cfn-cloudformation-moduleversion-modulepackage)
     * @param modulePackage A URL to the S3 bucket containing the package that contains the template
     * fragment and schema files for the module version to register. 
     */
    override fun modulePackage(modulePackage: String) {
      cdkBuilder.modulePackage(modulePackage)
    }

    public fun build(): software.amazon.awscdk.services.cloudformation.CfnModuleVersion =
        cdkBuilder.build()
  }

  public companion object {
    public val CFN_RESOURCE_TYPE_NAME: String =
        software.amazon.awscdk.services.cloudformation.CfnModuleVersion.CFN_RESOURCE_TYPE_NAME

    public operator fun invoke(
      scope: CloudshiftdevConstructsConstruct,
      id: String,
      block: Builder.() -> Unit = {},
    ): CfnModuleVersion {
      val builderImpl = BuilderImpl(CloudshiftdevConstructsConstruct.unwrap(scope), id)
      return CfnModuleVersion(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.services.cloudformation.CfnModuleVersion):
        CfnModuleVersion = CfnModuleVersion(cdkObject)

    internal fun unwrap(wrapped: CfnModuleVersion):
        software.amazon.awscdk.services.cloudformation.CfnModuleVersion = wrapped.cdkObject as
        software.amazon.awscdk.services.cloudformation.CfnModuleVersion
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy