Class: AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty
- 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
-
#s3 ⇒ AWSCDK::IResolvable, ...
readonly
Contains configurations for the Amazon S3 location in which to store the input into the node.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(s3: nil) ⇒ StorageFlowNodeServiceConfigurationProperty
constructor
A new instance of StorageFlowNodeServiceConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(s3: nil) ⇒ StorageFlowNodeServiceConfigurationProperty
Returns a new instance of StorageFlowNodeServiceConfigurationProperty.
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
#s3 ⇒ AWSCDK::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_properties ⇒ Object
2710 2711 2712 2713 2714 |
# File 'bedrock/cfn_flow.rb', line 2710 def self.jsii_properties { :s3 => "s3", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |