Class: Aws::EMRContainers::Types::TemplateParameterConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMRContainers::Types::TemplateParameterConfiguration
- Defined in:
- gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb
Overview
The configuration of a job template parameter.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
The default value for the job template parameter.
-
#type ⇒ String
The type of the job template parameter.
Instance Attribute Details
#default_value ⇒ String
The default value for the job template parameter.
2019 2020 2021 2022 2023 2024 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 2019 class TemplateParameterConfiguration < Struct.new( :type, :default_value) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.
2019 2020 2021 2022 2023 2024 |
# File 'gems/aws-sdk-emrcontainers/lib/aws-sdk-emrcontainers/types.rb', line 2019 class TemplateParameterConfiguration < Struct.new( :type, :default_value) SENSITIVE = [] include Aws::Structure end |