Class: Aws::QuickSight::Types::CustomActionURLOperation
- Inherits:
-
Struct
- Object
- Struct
- Aws::QuickSight::Types::CustomActionURLOperation
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-quicksight/types.rb
Overview
The URL operation that opens a link to another webpage.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#url_target ⇒ String
The target of the
CustomActionURLOperation. -
#url_template ⇒ String
THe URL link of the
CustomActionURLOperation.
Instance Attribute Details
#url_target ⇒ String
The target of the CustomActionURLOperation.
Valid values are defined as follows:
-
NEW_TAB: Opens the target URL in a new browser tab. -
NEW_WINDOW: Opens the target URL in a new browser window. -
SAME_TAB: Opens the target URL in the same browser tab.
10697 10698 10699 10700 10701 10702 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10697 class CustomActionURLOperation < Struct.new( :url_template, :url_target) SENSITIVE = [] include Aws::Structure end |
#url_template ⇒ String
THe URL link of the CustomActionURLOperation.
10697 10698 10699 10700 10701 10702 |
# File 'lib/aws-sdk-quicksight/types.rb', line 10697 class CustomActionURLOperation < Struct.new( :url_template, :url_target) SENSITIVE = [] include Aws::Structure end |