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

io.cloudshiftdev.awscdk.services.iam.OrganizationPrincipal.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 kotlin.String

/**
 * A principal that represents an AWS Organization.
 *
 * Example:
 *
 * ```
 * // Grant permissions to an entire AWS organization
 * Function fn;
 * OrganizationPrincipal org = new OrganizationPrincipal("o-xxxxxxxxxx");
 * fn.grantInvoke(org);
 * ```
 */
public open class OrganizationPrincipal(
  cdkObject: software.amazon.awscdk.services.iam.OrganizationPrincipal,
) : PrincipalBase(cdkObject) {
  public constructor(organizationId: String) :
      this(software.amazon.awscdk.services.iam.OrganizationPrincipal(organizationId)
  )

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

  /**
   * The unique identifier (ID) of an organization (i.e. o-12345abcde).
   */
  public open fun organizationId(): String = unwrap(this).getOrganizationId()

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

  public companion object {
    internal fun wrap(cdkObject: software.amazon.awscdk.services.iam.OrganizationPrincipal):
        OrganizationPrincipal = OrganizationPrincipal(cdkObject)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy