Class: AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock/cfn_flow.rb

Overview

Contains configurations for the service to use for storing the input into the node.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(s3: nil) ⇒ StorageFlowNodeServiceConfigurationProperty

Returns a new instance of StorageFlowNodeServiceConfigurationProperty.

Parameters:



2699
2700
2701
2702
# File 'bedrock/cfn_flow.rb', line 2699

def initialize(s3: nil)
  @s3 = s3.is_a?(Hash) ? ::AWSCDK::Bedrock::CfnFlow::StorageFlowNodeS3ConfigurationProperty.new(**s3.transform_keys(&:to_sym)) : s3
  Jsii::Type.check_type(@s3, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19iZWRyb2NrLkNmbkZsb3cuU3RvcmFnZUZsb3dOb2RlUzNDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "s3") unless @s3.nil?
end

Instance Attribute Details

#s3AWSCDK::IResolvable, ... (readonly)

Contains configurations for the Amazon S3 location in which to store the input into the node.



2708
2709
2710
# File 'bedrock/cfn_flow.rb', line 2708

def s3
  @s3
end

Class Method Details

.jsii_propertiesObject



2710
2711
2712
2713
2714
# File 'bedrock/cfn_flow.rb', line 2710

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

Instance Method Details

#to_jsiiObject



2716
2717
2718
2719
2720
2721
2722
# File 'bedrock/cfn_flow.rb', line 2716

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