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

com.pulumi.awsnative.iam.kotlin.outputs.GetManagedPolicyResult.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.awsnative.iam.kotlin.outputs

import kotlin.Any
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property attachmentCount The number of principal entities (users, groups, and roles) that the policy is attached to.
 * @property createDate The date and time, in [ISO 8601 date-time format](https://docs.aws.amazon.com/http://www.iso.org/iso/iso8601) , when the policy was created.
 * @property defaultVersionId The identifier for the version of the policy that is set as the default (operative) version.
 * For more information about policy versions, see [Versioning for managed policies](https://docs.aws.amazon.com/IAM/latest/UserGuide/policies-managed-versions.html) in the *IAM User Guide* .
 * @property groups The name (friendly name, not ARN) of the group to attach the policy to.
 *  This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
 * @property isAttachable Specifies whether the policy can be attached to an IAM user, group, or role.
 * @property permissionsBoundaryUsageCount The number of entities (users and roles) for which the policy is used as the permissions boundary.
 * For more information about permissions boundaries, see [Permissions boundaries for IAM identities](https://docs.aws.amazon.com/IAM/latest/UserGuide/access_policies_boundaries.html) in the *IAM User Guide* .
 * @property policyArn
 * @property policyDocument The JSON policy document that you want to use as the content for the new policy.
 *  You must provide policies in JSON format in IAM. However, for CFN templates formatted in YAML, you can provide the policy in JSON or YAML format. CFN always converts a YAML policy to JSON format before submitting it to IAM.
 *  The maximum length of the policy document that you can pass in this operation, including whitespace, is listed below. To view the maximum character counts of a managed policy with no whitespaces, see [IAM and character quotas](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html#reference_iam-quotas-entity-length).
 *  To learn more about JSON policy grammar, see [Grammar of the IAM JSON policy language](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_grammar.html) in the *IAM User Guide*.
 *  The [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) used to validate this parameter is a string of characters consisting of the following:
 *   +  Any printable ASCII character ranging from the space character (``\u0020``) through the end of the ASCII character range
 *   +  The printable characters in the Basic Latin and Latin-1 Supplement character set (through ``\u00FF``)
 *   +  The special characters tab (``\u0009``), line feed (``\u000A``), and carriage return (``\u000D``)
 * Search the [CloudFormation User Guide](https://docs.aws.amazon.com/cloudformation/) for `AWS::IAM::ManagedPolicy` for more information about the expected schema for this property.
 * @property policyId The stable and unique string identifying the policy.
 * For more information about IDs, see [IAM identifiers](https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html) in the *IAM User Guide* .
 * @property roles The name (friendly name, not ARN) of the role to attach the policy to.
 *  This parameter allows (per its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
 *   If an external policy (such as ``AWS::IAM::Policy`` or ``AWS::IAM::ManagedPolicy``) has a ``Ref`` to a role and if a resource (such as ``AWS::ECS::Service``) also has a ``Ref`` to the same role, add a ``DependsOn`` attribute to the resource to make the resource depend on the external policy. This dependency ensures that the role's policy is available throughout the resource's lifecycle. For example, when you delete a stack with an ``AWS::ECS::Service`` resource, the ``DependsOn`` attribute ensures that CFN deletes the ``AWS::ECS::Service`` resource before deleting its role's policy.
 * @property updateDate The date and time, in [ISO 8601 date-time format](https://docs.aws.amazon.com/http://www.iso.org/iso/iso8601) , when the policy was last updated.
 * When a policy has only one version, this field contains the date and time when the policy was created. When a policy has more than one version, this field contains the date and time when the most recent policy version was created.
 * @property users The name (friendly name, not ARN) of the IAM user to attach the policy to.
 *  This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex)) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
 */
public data class GetManagedPolicyResult(
    public val attachmentCount: Int? = null,
    public val createDate: String? = null,
    public val defaultVersionId: String? = null,
    public val groups: List? = null,
    public val isAttachable: Boolean? = null,
    public val permissionsBoundaryUsageCount: Int? = null,
    public val policyArn: String? = null,
    public val policyDocument: Any? = null,
    public val policyId: String? = null,
    public val roles: List? = null,
    public val updateDate: String? = null,
    public val users: List? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.awsnative.iam.outputs.GetManagedPolicyResult): GetManagedPolicyResult = GetManagedPolicyResult(
            attachmentCount = javaType.attachmentCount().map({ args0 -> args0 }).orElse(null),
            createDate = javaType.createDate().map({ args0 -> args0 }).orElse(null),
            defaultVersionId = javaType.defaultVersionId().map({ args0 -> args0 }).orElse(null),
            groups = javaType.groups().map({ args0 -> args0 }),
            isAttachable = javaType.isAttachable().map({ args0 -> args0 }).orElse(null),
            permissionsBoundaryUsageCount = javaType.permissionsBoundaryUsageCount().map({ args0 ->
                args0
            }).orElse(null),
            policyArn = javaType.policyArn().map({ args0 -> args0 }).orElse(null),
            policyDocument = javaType.policyDocument().map({ args0 -> args0 }).orElse(null),
            policyId = javaType.policyId().map({ args0 -> args0 }).orElse(null),
            roles = javaType.roles().map({ args0 -> args0 }),
            updateDate = javaType.updateDate().map({ args0 -> args0 }).orElse(null),
            users = javaType.users().map({ args0 -> args0 }),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy