Class: AWSCDK::Codepipeline::CfnPipeline::BlockerDeclarationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Codepipeline::CfnPipeline::BlockerDeclarationProperty
- Defined in:
- codepipeline/cfn_pipeline.rb
Overview
Reserved for future use.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
Reserved for future use.
-
#type ⇒ String
readonly
Reserved for future use.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(name:, type:) ⇒ BlockerDeclarationProperty
constructor
A new instance of BlockerDeclarationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(name:, type:) ⇒ BlockerDeclarationProperty
Returns a new instance of BlockerDeclarationProperty.
1078 1079 1080 1081 1082 1083 |
# File 'codepipeline/cfn_pipeline.rb', line 1078 def initialize(name:, type:) @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") end |
Instance Attribute Details
#name ⇒ String (readonly)
Reserved for future use.
1089 1090 1091 |
# File 'codepipeline/cfn_pipeline.rb', line 1089 def name @name end |
#type ⇒ String (readonly)
Reserved for future use.
1094 1095 1096 |
# File 'codepipeline/cfn_pipeline.rb', line 1094 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
1096 1097 1098 1099 1100 1101 |
# File 'codepipeline/cfn_pipeline.rb', line 1096 def self.jsii_properties { :name => "name", :type => "type", } end |
Instance Method Details
#to_jsii ⇒ Object
1103 1104 1105 1106 1107 1108 1109 1110 |
# File 'codepipeline/cfn_pipeline.rb', line 1103 def to_jsii result = {} result.merge!({ "name" => @name, "type" => @type, }) result.compact end |