Class: Aws::QuickSight::Types::ImageSource
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::QuickSight::Types::ImageSource
 
- Defined in:
- gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb
Overview
    Note:
    
  
  ImageSource is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
ImageSource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ImageSource corresponding to the set member.
The source of the image.
Defined Under Namespace
Classes: PublicUrl, S3Uri, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #public_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The public URL that points to the source image. 
- 
  
    
      #s3_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon S3 URI that points to the source image. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#public_url ⇒ String
The public URL that points to the source image.
| 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21262 class ImageSource < Struct.new( :public_url, :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PublicUrl < ImageSource; end class S3Uri < ImageSource; end class Unknown < ImageSource; end end | 
#s3_uri ⇒ String
The Amazon S3 URI that points to the source image.
| 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21262 class ImageSource < Struct.new( :public_url, :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class PublicUrl < ImageSource; end class S3Uri < ImageSource; end class Unknown < ImageSource; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 21262 21263 21264 | # File 'gems/aws-sdk-quicksight/lib/aws-sdk-quicksight/types.rb', line 21262 def unknown @unknown end |