Class: Aws::NimbleStudio::Types::ScriptParameterKeyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::NimbleStudio::Types::ScriptParameterKeyValue
- Defined in:
- gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb
Overview
Note:
When making an API call, you may pass ScriptParameterKeyValue data as a hash:
{
key: "ScriptParameterKey",
value: "ScriptParameterValue",
}
A parameter for a studio component script, in the form of a key:value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
A script parameter key.
-
#value ⇒ String
A script parameter value.
Instance Attribute Details
#key ⇒ String
A script parameter key.
2647 2648 2649 2650 2651 2652 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2647 class ScriptParameterKeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
A script parameter value.
2647 2648 2649 2650 2651 2652 |
# File 'gems/aws-sdk-nimblestudio/lib/aws-sdk-nimblestudio/types.rb', line 2647 class ScriptParameterKeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |