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

cloudshift.awscdk.dsl.services.ec2.CfnTransitGatewayPeeringAttachmentPeeringAttachmentStatusPropertyDsl.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
@file:Suppress("RedundantVisibilityModifier","RedundantUnitReturnType","RemoveRedundantQualifierName","unused","UnusedImport","ClassName","REDUNDANT_PROJECTION","DEPRECATION")

package cloudshift.awscdk.dsl.services.ec2

import cloudshift.awscdk.common.CdkDslMarker
import kotlin.String
import software.amazon.awscdk.services.ec2.CfnTransitGatewayPeeringAttachment

/**
 * The status of the transit gateway peering attachment.
 *
 * Example:
 *
 * ```
 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import software.amazon.awscdk.services.ec2.*;
 * PeeringAttachmentStatusProperty peeringAttachmentStatusProperty =
 * PeeringAttachmentStatusProperty.builder()
 * .code("code")
 * .message("message")
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewaypeeringattachment-peeringattachmentstatus.html)
 */
@CdkDslMarker
public class CfnTransitGatewayPeeringAttachmentPeeringAttachmentStatusPropertyDsl {
  private val cdkBuilder: CfnTransitGatewayPeeringAttachment.PeeringAttachmentStatusProperty.Builder
      = CfnTransitGatewayPeeringAttachment.PeeringAttachmentStatusProperty.builder()

  /**
   * @param code The status code.
   */
  public fun code(code: String) {
    cdkBuilder.code(code)
  }

  /**
   * @param message The status message, if applicable.
   */
  public fun message(message: String) {
    cdkBuilder.message(message)
  }

  public fun build(): CfnTransitGatewayPeeringAttachment.PeeringAttachmentStatusProperty =
      cdkBuilder.build()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy