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

cloudshift.awscdk.dsl.services.appmesh.CfnVirtualNodeTlsValidationContextAcmTrustPropertyDsl.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.appmesh

import cloudshift.awscdk.common.CdkDslMarker
import kotlin.String
import kotlin.collections.Collection
import kotlin.collections.MutableList
import software.amazon.awscdk.services.appmesh.CfnVirtualNode

/**
 * An object that represents a Transport Layer Security (TLS) validation context trust for an AWS
 * Certificate Manager certificate.
 *
 * 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.appmesh.*;
 * TlsValidationContextAcmTrustProperty tlsValidationContextAcmTrustProperty =
 * TlsValidationContextAcmTrustProperty.builder()
 * .certificateAuthorityArns(List.of("certificateAuthorityArns"))
 * .build();
 * ```
 *
 * [Documentation](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-tlsvalidationcontextacmtrust.html)
 */
@CdkDslMarker
public class CfnVirtualNodeTlsValidationContextAcmTrustPropertyDsl {
  private val cdkBuilder: CfnVirtualNode.TlsValidationContextAcmTrustProperty.Builder =
      CfnVirtualNode.TlsValidationContextAcmTrustProperty.builder()

  private val _certificateAuthorityArns: MutableList = mutableListOf()

  /**
   * @param certificateAuthorityArns One or more ACM Amazon Resource Name (ARN)s. 
   */
  public fun certificateAuthorityArns(vararg certificateAuthorityArns: String) {
    _certificateAuthorityArns.addAll(listOf(*certificateAuthorityArns))
  }

  /**
   * @param certificateAuthorityArns One or more ACM Amazon Resource Name (ARN)s. 
   */
  public fun certificateAuthorityArns(certificateAuthorityArns: Collection) {
    _certificateAuthorityArns.addAll(certificateAuthorityArns)
  }

  public fun build(): CfnVirtualNode.TlsValidationContextAcmTrustProperty {
    if(_certificateAuthorityArns.isNotEmpty())
        cdkBuilder.certificateAuthorityArns(_certificateAuthorityArns)
    return cdkBuilder.build()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy