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

io.cloudshiftdev.awscdk.services.iam.ServicePrincipal.kt Maven / Gradle / Ivy

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

package io.cloudshiftdev.awscdk.services.iam

import io.cloudshiftdev.awscdk.common.CdkDslMarker
import io.cloudshiftdev.awscdk.common.CdkObjectWrappers
import kotlin.Any
import kotlin.String
import kotlin.Unit
import kotlin.collections.Map

/**
 * An IAM principal that represents an AWS service (i.e. `sqs.amazonaws.com`).
 *
 * Example:
 *
 * ```
 * IChainable definition;
 * Role role = Role.Builder.create(this, "Role")
 * .assumedBy(new ServicePrincipal("lambda.amazonaws.com"))
 * .build();
 * StateMachine stateMachine = StateMachine.Builder.create(this, "StateMachine")
 * .definitionBody(DefinitionBody.fromChainable(definition))
 * .build();
 * // Give role permission to get execution history of ALL executions for the state machine
 * stateMachine.grantExecution(role, "states:GetExecutionHistory");
 * ```
 */
public open class ServicePrincipal(
  cdkObject: software.amazon.awscdk.services.iam.ServicePrincipal,
) : PrincipalBase(cdkObject) {
  public constructor(service: String) :
      this(software.amazon.awscdk.services.iam.ServicePrincipal(service)
  )

  public constructor(service: String, opts: ServicePrincipalOpts) :
      this(software.amazon.awscdk.services.iam.ServicePrincipal(service,
      opts.let(ServicePrincipalOpts.Companion::unwrap))
  )

  public constructor(service: String, opts: ServicePrincipalOpts.Builder.() -> Unit) : this(service,
      ServicePrincipalOpts(opts)
  )

  /**
   * Return whether or not this principal is equal to the given principal.
   */
  public override fun dedupeString(): String? = unwrap(this).dedupeString()

  /**
   * Return the policy fragment that identifies this principal in a Policy.
   */
  public override fun policyFragment(): PrincipalPolicyFragment =
      unwrap(this).getPolicyFragment().let(PrincipalPolicyFragment::wrap)

  /**
   * AWS service (i.e. sqs.amazonaws.com).
   */
  public open fun service(): String = unwrap(this).getService()

  /**
   * A fluent builder for [io.cloudshiftdev.awscdk.services.iam.ServicePrincipal].
   */
  @CdkDslMarker
  public interface Builder {
    /**
     * Additional conditions to add to the Service Principal.
     *
     * Default: - No conditions
     *
     * @param conditions Additional conditions to add to the Service Principal. 
     */
    public fun conditions(conditions: Map)

    /**
     * The region in which you want to reference the service.
     *
     * This is only necessary for *cross-region* references to *opt-in* regions. In those
     * cases, the region name needs to be included to reference the correct service principal.
     * In all other cases, the global service principal name is sufficient.
     *
     * This field behaves differently depending on whether the
     * `@aws-cdk/aws-iam:standardizedServicePrincipals`
     * flag is set or not:
     *
     * * If the flag is set, the input service principal is assumed to be of the form
     * `SERVICE.amazonaws.com`.
     * That value will always be returned, unless the given region is an opt-in region and the
     * service
     * principal is rendered in a stack in a different region, in which case
     * `SERVICE.REGION.amazonaws.com`
     * will be rendered. Under this regime, there is no downside to always specifying the region
     * property:
     * it will be rendered only if necessary.
     * * If the flag is not set, the service principal will resolve to a single principal
     * whose name comes from the `@aws-cdk/region-info` package, using the region to override
     * the stack region. If there is no entry for this service principal in the database,, the input
     * service name is returned literally. This is legacy behavior and is not recommended.
     *
     * Default: - the resolving Stack's region.
     *
     * @param region The region in which you want to reference the service. 
     */
    public fun region(region: String)
  }

  private class BuilderImpl(
    service: String,
  ) : Builder {
    private val cdkBuilder: software.amazon.awscdk.services.iam.ServicePrincipal.Builder =
        software.amazon.awscdk.services.iam.ServicePrincipal.Builder.create(service)

    /**
     * Additional conditions to add to the Service Principal.
     *
     * Default: - No conditions
     *
     * @param conditions Additional conditions to add to the Service Principal. 
     */
    override fun conditions(conditions: Map) {
      cdkBuilder.conditions(conditions.mapValues{CdkObjectWrappers.unwrap(it.value)})
    }

    /**
     * The region in which you want to reference the service.
     *
     * This is only necessary for *cross-region* references to *opt-in* regions. In those
     * cases, the region name needs to be included to reference the correct service principal.
     * In all other cases, the global service principal name is sufficient.
     *
     * This field behaves differently depending on whether the
     * `@aws-cdk/aws-iam:standardizedServicePrincipals`
     * flag is set or not:
     *
     * * If the flag is set, the input service principal is assumed to be of the form
     * `SERVICE.amazonaws.com`.
     * That value will always be returned, unless the given region is an opt-in region and the
     * service
     * principal is rendered in a stack in a different region, in which case
     * `SERVICE.REGION.amazonaws.com`
     * will be rendered. Under this regime, there is no downside to always specifying the region
     * property:
     * it will be rendered only if necessary.
     * * If the flag is not set, the service principal will resolve to a single principal
     * whose name comes from the `@aws-cdk/region-info` package, using the region to override
     * the stack region. If there is no entry for this service principal in the database,, the input
     * service name is returned literally. This is legacy behavior and is not recommended.
     *
     * Default: - the resolving Stack's region.
     *
     * @param region The region in which you want to reference the service. 
     */
    override fun region(region: String) {
      cdkBuilder.region(region)
    }

    public fun build(): software.amazon.awscdk.services.iam.ServicePrincipal = cdkBuilder.build()
  }

  public companion object {
    public fun servicePrincipalName(service: String): String =
        software.amazon.awscdk.services.iam.ServicePrincipal.servicePrincipalName(service)

    public operator fun invoke(service: String, block: Builder.() -> Unit = {}): ServicePrincipal {
      val builderImpl = BuilderImpl(service)
      return ServicePrincipal(builderImpl.apply(block).build())
    }

    internal fun wrap(cdkObject: software.amazon.awscdk.services.iam.ServicePrincipal):
        ServicePrincipal = ServicePrincipal(cdkObject)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy