Class: AWSCDK::DataPipeline::CfnPipeline::ParameterObjectProperty

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

Overview

Contains information about a parameter object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes:, id:) ⇒ ParameterObjectProperty

Returns a new instance of ParameterObjectProperty.

Parameters:



740
741
742
743
744
745
# File 'data_pipeline/cfn_pipeline.rb', line 740

def initialize(attributes:, id:)
  @attributes = attributes
  Jsii::Type.check_type(@attributes, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImNvbGxlY3Rpb24iOnsiZWxlbWVudHR5cGUiOnsidW5pb24iOnsidHlwZXMiOlt7ImZxbiI6ImF3cy1jZGstbGliLklSZXNvbHZhYmxlIn0seyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfZGF0YXBpcGVsaW5lLkNmblBpcGVsaW5lLlBhcmFtZXRlckF0dHJpYnV0ZVByb3BlcnR5In1dfX0sImtpbmQiOiJhcnJheSJ9fV19fQ==")), "attributes")
  @id = id
  Jsii::Type.check_type(@id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "id")
end

Instance Attribute Details

#idString (readonly)

The ID of the parameter object.



756
757
758
# File 'data_pipeline/cfn_pipeline.rb', line 756

def id
  @id
end

Class Method Details

.jsii_propertiesObject



758
759
760
761
762
763
# File 'data_pipeline/cfn_pipeline.rb', line 758

def self.jsii_properties
  {
    :attributes => "attributes",
    :id => "id",
  }
end

Instance Method Details

#to_jsiiObject



765
766
767
768
769
770
771
772
# File 'data_pipeline/cfn_pipeline.rb', line 765

def to_jsii
  result = {}
  result.merge!({
    "attributes" => @attributes,
    "id" => @id,
  })
  result.compact
end