Class: Aws::WorkSpacesWeb::Types::IconImageInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::WorkSpacesWeb::Types::IconImageInput
- Defined in:
- gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb
Overview
Note:
IconImageInput is a union - when making an API calls you must set exactly one of the members.
The input for an icon image (logo or favicon). Provide either a binary image file or an S3 URI pointing to the image file. Maximum 100 KB in JPEG, PNG, or ICO format.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#blob ⇒ String
The image provided as a binary image file.
-
#s3_uri ⇒ String
The S3 URI pointing to the image file.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#blob ⇒ String
The image provided as a binary image file.
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2203 class IconImageInput < Struct.new( :blob, :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Blob < IconImageInput; end class S3Uri < IconImageInput; end class Unknown < IconImageInput; end end |
#s3_uri ⇒ String
The S3 URI pointing to the image file. The URI must use the format
s3://bucket-name/key-name. You must have read access to the S3
object.
2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2203 class IconImageInput < Struct.new( :blob, :s3_uri, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Blob < IconImageInput; end class S3Uri < IconImageInput; end class Unknown < IconImageInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2203 2204 2205 |
# File 'gems/aws-sdk-workspacesweb/lib/aws-sdk-workspacesweb/types.rb', line 2203 def unknown @unknown end |