Class: Aws::SocialMessaging::Types::MetaFlowAsset
- Inherits:
-
Struct
- Object
- Struct
- Aws::SocialMessaging::Types::MetaFlowAsset
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-socialmessaging/types.rb
Overview
Represents a single asset file associated with a WhatsApp Flow, including a presigned download URL.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#asset_type ⇒ String
The type of asset.
-
#download_url ⇒ String
A presigned URL from Meta for downloading the asset.
-
#name ⇒ String
The filename of the asset (for example, flow.json).
Instance Attribute Details
#asset_type ⇒ String
The type of asset. Currently the only supported value is FLOW_JSON.
1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-socialmessaging/types.rb', line 1279 class MetaFlowAsset < Struct.new( :name, :asset_type, :download_url) SENSITIVE = [] include Aws::Structure end |
#download_url ⇒ String
A presigned URL from Meta for downloading the asset. The URL expires after a short period.
1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-socialmessaging/types.rb', line 1279 class MetaFlowAsset < Struct.new( :name, :asset_type, :download_url) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The filename of the asset (for example, flow.json).
1279 1280 1281 1282 1283 1284 1285 |
# File 'lib/aws-sdk-socialmessaging/types.rb', line 1279 class MetaFlowAsset < Struct.new( :name, :asset_type, :download_url) SENSITIVE = [] include Aws::Structure end |