Class: AWSCDK::Codepipeline::CfnPipeline::BlockerDeclarationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
codepipeline/cfn_pipeline.rb

Overview

Reserved for future use.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, type:) ⇒ BlockerDeclarationProperty

Returns a new instance of BlockerDeclarationProperty.

Parameters:

  • name (String)

    Reserved for future use.

  • type (String)

    Reserved for future use.



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

#nameString (readonly)

Reserved for future use.



1089
1090
1091
# File 'codepipeline/cfn_pipeline.rb', line 1089

def name
  @name
end

#typeString (readonly)

Reserved for future use.



1094
1095
1096
# File 'codepipeline/cfn_pipeline.rb', line 1094

def type
  @type
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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