GetParametersByPathResult

data class GetParametersByPathResult(val arns: List<String>, val id: String, val names: List<String>, val path: String, val recursive: Boolean? = null, val types: List<String>, val values: List<String>, val withDecryption: Boolean? = null)

A collection of values returned by getParametersByPath.

Constructors

Link copied to clipboard
constructor(arns: List<String>, id: String, names: List<String>, path: String, recursive: Boolean? = null, types: List<String>, values: List<String>, withDecryption: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A list that contains the Amazon Resource Names (ARNs) of the retrieved parameters.

Link copied to clipboard
val id: String

The provider-assigned unique ID for this managed resource.

Link copied to clipboard

A list that contains the names of the retrieved parameters.

Link copied to clipboard
Link copied to clipboard
val recursive: Boolean? = null
Link copied to clipboard

A list that contains the types (String, StringList, or SecureString) of retrieved parameters.

Link copied to clipboard

A list that contains the retrieved parameter values. Note: This value is always marked as sensitive in the pulumi preview output, regardless of whether any retrieved parameters are of SecureString type. Use the nonsensitive function to override the behavior at your own risk and discretion, if you are certain that there are no sensitive values being retrieved.

Link copied to clipboard
val withDecryption: Boolean? = null