Class: Aws::CloudFormation::Types::ParameterConstraints
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::ParameterConstraints
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
A set of criteria that AWS CloudFormation uses to validate parameter
values. Although other constraints might be defined in the stack
template, AWS CloudFormation returns only the AllowedValues
property.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_values ⇒ Array<String>
A list of values that are permitted for a parameter.
Instance Attribute Details
#allowed_values ⇒ Array<String>
A list of values that are permitted for a parameter.
4502 4503 4504 4505 4506 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 4502 class ParameterConstraints < Struct.new( :allowed_values) SENSITIVE = [] include Aws::Structure end |