Class: Aws::CleanRooms::Types::AnalysisParameter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CleanRooms::Types::AnalysisParameter
- Defined in:
- gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb
Overview
Optional. The member who can query can provide this placeholder for a literal data value in an analysis template.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_value ⇒ String
Optional.
-
#name ⇒ String
The name of the parameter.
-
#type ⇒ String
The type of parameter.
Instance Attribute Details
#default_value ⇒ String
Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
104 105 106 107 108 109 110 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 104 class AnalysisParameter < Struct.new( :name, :type, :default_value) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the parameter. The name must use only alphanumeric, underscore (_), or hyphen (-) characters but cannot start or end with a hyphen.
104 105 106 107 108 109 110 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 104 class AnalysisParameter < Struct.new( :name, :type, :default_value) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of parameter.
104 105 106 107 108 109 110 |
# File 'gems/aws-sdk-cleanrooms/lib/aws-sdk-cleanrooms/types.rb', line 104 class AnalysisParameter < Struct.new( :name, :type, :default_value) SENSITIVE = [] include Aws::Structure end |