Class: Aws::BedrockAgent::Types::StorageFlowNodeServiceConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::BedrockAgent::Types::StorageFlowNodeServiceConfiguration
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-bedrockagent/types.rb
 
Overview
    Note:
    
  
  StorageFlowNodeServiceConfiguration is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
StorageFlowNodeServiceConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StorageFlowNodeServiceConfiguration corresponding to the set member.
Contains configurations for the service to use for storing the input into the node.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #s3  ⇒ Types::StorageFlowNodeS3Configuration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Contains configurations for the Amazon S3 location in which to store the input into the node.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#s3 ⇒ Types::StorageFlowNodeS3Configuration
Contains configurations for the Amazon S3 location in which to store the input into the node.
      6840 6841 6842 6843 6844 6845 6846 6847 6848 6849  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6840 class StorageFlowNodeServiceConfiguration < Struct.new( :s3, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3 < StorageFlowNodeServiceConfiguration; end class Unknown < StorageFlowNodeServiceConfiguration; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      6840 6841 6842  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6840 def unknown @unknown end  |