GetPolicyPlainArgs

data class GetPolicyPlainArgs(val arn: String? = null, val name: String? = null, val pathPrefix: String? = null, val tags: Map<String, String>? = null) : ConvertibleToJava<GetPolicyPlainArgs>

A collection of arguments for invoking getPolicy.

Constructors

Link copied to clipboard
constructor(arn: String? = null, name: String? = null, pathPrefix: String? = null, tags: Map<String, String>? = null)

Properties

Link copied to clipboard
val arn: String? = null

ARN of the IAM policy. Conflicts with name and path_prefix.

Link copied to clipboard
val name: String? = null

Name of the IAM policy. Conflicts with arn.

Link copied to clipboard
val pathPrefix: String? = null

Prefix of the path to the IAM policy. Defaults to a slash (/). Conflicts with arn.

Link copied to clipboard
val tags: Map<String, String>? = null

Key-value mapping of tags for the IAM Policy.

Functions

Link copied to clipboard
open override fun toJava(): GetPolicyPlainArgs