Class: AWSCDK::CleanRooms::CfnAnalysisTemplate::HashProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CleanRooms::CfnAnalysisTemplate::HashProperty
- Defined in:
- clean_rooms/cfn_analysis_template.rb
Overview
Hash.
Instance Attribute Summary collapse
-
#sha256 ⇒ String?
readonly
The SHA-256 hash value.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(sha256: nil) ⇒ HashProperty
constructor
A new instance of HashProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(sha256: nil) ⇒ HashProperty
Returns a new instance of HashProperty.
1075 1076 1077 1078 |
# File 'clean_rooms/cfn_analysis_template.rb', line 1075 def initialize(sha256: nil) @sha256 = sha256 Jsii::Type.check_type(@sha256, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "sha256") unless @sha256.nil? end |
Instance Attribute Details
#sha256 ⇒ String? (readonly)
The SHA-256 hash value.
1084 1085 1086 |
# File 'clean_rooms/cfn_analysis_template.rb', line 1084 def sha256 @sha256 end |
Class Method Details
.jsii_properties ⇒ Object
1086 1087 1088 1089 1090 |
# File 'clean_rooms/cfn_analysis_template.rb', line 1086 def self.jsii_properties { :sha256 => "sha256", } end |
Instance Method Details
#to_jsii ⇒ Object
1092 1093 1094 1095 1096 1097 1098 |
# File 'clean_rooms/cfn_analysis_template.rb', line 1092 def to_jsii result = {} result.merge!({ "sha256" => @sha256, }) result.compact end |