Class: AWSCDK::Bedrock::CfnFlow::StorageFlowNodeConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Bedrock::CfnFlow::StorageFlowNodeConfigurationProperty
- Defined in:
- bedrock/cfn_flow.rb
Overview
Contains configurations for a Storage node in a flow.
This node stores the input in an Amazon S3 location that you specify.
Instance Attribute Summary collapse
-
#service_configuration ⇒ AWSCDK::IResolvable, AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty
readonly
Contains configurations for the service to use for storing the input into the node.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(service_configuration:) ⇒ StorageFlowNodeConfigurationProperty
constructor
A new instance of StorageFlowNodeConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(service_configuration:) ⇒ StorageFlowNodeConfigurationProperty
Returns a new instance of StorageFlowNodeConfigurationProperty.
2633 2634 2635 2636 |
# File 'bedrock/cfn_flow.rb', line 2633 def initialize(service_configuration:) @service_configuration = service_configuration.is_a?(Hash) ? ::AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty.new(**service_configuration.transform_keys(&:to_sym)) : service_configuration Jsii::Type.check_type(@service_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19iZWRyb2NrLkNmbkZsb3cuU3RvcmFnZUZsb3dOb2RlU2VydmljZUNvbmZpZ3VyYXRpb25Qcm9wZXJ0eSJ9XX19")), "serviceConfiguration") end |
Instance Attribute Details
#service_configuration ⇒ AWSCDK::IResolvable, AWSCDK::Bedrock::CfnFlow::StorageFlowNodeServiceConfigurationProperty (readonly)
Contains configurations for the service to use for storing the input into the node.
2642 2643 2644 |
# File 'bedrock/cfn_flow.rb', line 2642 def service_configuration @service_configuration end |
Class Method Details
.jsii_properties ⇒ Object
2644 2645 2646 2647 2648 |
# File 'bedrock/cfn_flow.rb', line 2644 def self.jsii_properties { :service_configuration => "serviceConfiguration", } end |
Instance Method Details
#to_jsii ⇒ Object
2650 2651 2652 2653 2654 2655 2656 |
# File 'bedrock/cfn_flow.rb', line 2650 def to_jsii result = {} result.merge!({ "serviceConfiguration" => @service_configuration, }) result.compact end |