Class: Aws::Bedrock::Types::ModelInvocationJobOutputDataConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Bedrock::Types::ModelInvocationJobOutputDataConfig
 
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
    Note:
    
  
  ModelInvocationJobOutputDataConfig is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
ModelInvocationJobOutputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ModelInvocationJobOutputDataConfig corresponding to the set member.
Contains the configuration of the S3 location of the output data.
Direct Known Subclasses
Defined Under Namespace
Classes: S3OutputDataConfig, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #s3_output_data_config  ⇒ Types::ModelInvocationJobS3OutputDataConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Contains the configuration of the S3 location of the output data. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#s3_output_data_config ⇒ Types::ModelInvocationJobS3OutputDataConfig
Contains the configuration of the S3 location of the output data.
| 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 | # File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 10546 class ModelInvocationJobOutputDataConfig < Struct.new( :s3_output_data_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class S3OutputDataConfig < ModelInvocationJobOutputDataConfig; end class Unknown < ModelInvocationJobOutputDataConfig; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 10546 10547 10548 | # File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 10546 def unknown @unknown end |