Class: Aws::ElasticBeanstalk::Types::OptionRestrictionRegex
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticBeanstalk::Types::OptionRestrictionRegex
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticbeanstalk/types.rb
Overview
A regular expression representing a restriction on a string configuration option value.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#label ⇒ String
A unique name representing this regular expression.
-
#pattern ⇒ String
The regular expression pattern that a string configuration option value with this restriction must match.
Instance Attribute Details
#label ⇒ String
A unique name representing this regular expression.
3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3165 class OptionRestrictionRegex < Struct.new( :pattern, :label) SENSITIVE = [] include Aws::Structure end |
#pattern ⇒ String
The regular expression pattern that a string configuration option value with this restriction must match.
3165 3166 3167 3168 3169 3170 |
# File 'lib/aws-sdk-elasticbeanstalk/types.rb', line 3165 class OptionRestrictionRegex < Struct.new( :pattern, :label) SENSITIVE = [] include Aws::Structure end |