Class: AWSCDK::Bedrock::CfnFlowVersion::StorageFlowNodeServiceConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Bedrock::CfnFlowVersion::StorageFlowNodeServiceConfigurationProperty
- Defined in:
- bedrock/cfn_flow_version.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.
2467 2468 2469 2470 |
# File 'bedrock/cfn_flow_version.rb', line 2467 def initialize(s3: nil) @s3 = s3.is_a?(Hash) ? ::AWSCDK::Bedrock::CfnFlowVersion::StorageFlowNodeS3ConfigurationProperty.new(**s3.transform_keys(&:to_sym)) : s3 Jsii::Type.check_type(@s3, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19iZWRyb2NrLkNmbkZsb3dWZXJzaW9uLlN0b3JhZ2VGbG93Tm9kZVMzQ29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "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.
2476 2477 2478 |
# File 'bedrock/cfn_flow_version.rb', line 2476 def s3 @s3 end |
Class Method Details
.jsii_properties ⇒ Object
2478 2479 2480 2481 2482 |
# File 'bedrock/cfn_flow_version.rb', line 2478 def self.jsii_properties { :s3 => "s3", } end |
Instance Method Details
#to_jsii ⇒ Object
2484 2485 2486 2487 2488 2489 2490 |
# File 'bedrock/cfn_flow_version.rb', line 2484 def to_jsii result = {} result.merge!({ "s3" => @s3, }) result.compact end |