Class: Aws::CloudFormation::Types::ParameterConstraints

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb

Overview

A set of criteria that CloudFormation uses to validate parameter values. Although other constraints might be defined in the stack template, CloudFormation returns only the AllowedValues property.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allowed_valuesArray<String>

A list of values that are permitted for a parameter.

Returns:

  • (Array<String>)


6095
6096
6097
6098
6099
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6095

class ParameterConstraints < Struct.new(
  :allowed_values)
  SENSITIVE = []
  include Aws::Structure
end