Class: Aws::ServiceCatalog::Types::ParameterConstraints

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

Overview

The constraints that the administrator has put on the parameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#allowed_patternString

A regular expression that represents the patterns that allow for String types. The pattern must match the entire parameter value provided.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#allowed_valuesArray<String>

The values that the administrator has allowed for the parameter.

Returns:

  • (Array<String>)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#constraint_descriptionString

A string that explains a constraint when the constraint is violated. For example, without a constraint description, a parameter that has an allowed pattern of [A-Za-z0-9]+ displays the following error message when the user specifies an invalid value:

Malformed input-Parameter MyParameter must match pattern [A-Za-z0-9]+

By adding a constraint description, such as must only contain letters (uppercase and lowercase) and numbers, you can display the following customized error message:

Malformed input-Parameter MyParameter must only contain uppercase and lowercase letters and numbers.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#max_lengthString

An integer value that determines the largest number of characters you want to allow for String types.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#max_valueString

A numeric value that determines the largest numeric value you want to allow for Number types.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#min_lengthString

An integer value that determines the smallest number of characters you want to allow for String types.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end

#min_valueString

A numeric value that determines the smallest numeric value you want to allow for Number types.

Returns:

  • (String)


4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 4193

class ParameterConstraints < Struct.new(
  :allowed_values,
  :allowed_pattern,
  :constraint_description,
  :max_length,
  :min_length,
  :max_value,
  :min_value)
  SENSITIVE = []
  include Aws::Structure
end