PolicyIdentifier

sealed class PolicyIdentifier

Identifies one or more policies as a union type. Specify exactly one of PolicyType, PolicyArn, or InlinePolicyIdentifier to identify policies by their type, by Amazon Resource Name (ARN), or by the name of an inline policy and the entity it is attached to.

Inheritors

Types

Link copied to clipboard

An inline policy identifier consisting of a policy name and the entity it is attached to. Wildcard characters (* and ?) in the entity name can match multiple entities.

Link copied to clipboard
data class PolicyArn(val value: String) : PolicyIdentifier

The Amazon Resource Name (ARN) of an Amazon Web Services managed policy or a customer managed policy that is attached to an IAM user, group, or role. Wildcard characters are supported in the resource name portion of the ARN to match multiple managed policies: use at most one * (matches any sequence of characters, including none), and any number of ? (each matches exactly one character).

Link copied to clipboard

The policy type to identify. All policies of the specified type are matched.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this PolicyIdentifier as a PolicyArn and retrieves its kotlin.String value. Throws an exception if the PolicyIdentifier is not a PolicyArn.

Link copied to clipboard

Casts this PolicyIdentifier as a PolicyArn and retrieves its kotlin.String value. Returns null if the PolicyIdentifier is not a PolicyArn.

Link copied to clipboard