Class: Aws::XRay::Types::Alias
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::Alias
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-xray/types.rb
Overview
An alias for an edge.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The canonical name of the alias.
-
#names ⇒ Array<String>
A list of names for the alias, including the canonical name.
-
#type ⇒ String
The type of the alias.
Instance Attribute Details
#name ⇒ String
The canonical name of the alias.
29 30 31 32 33 34 35 |
# File 'lib/aws-sdk-xray/types.rb', line 29 class Alias < Struct.new( :name, :names, :type) SENSITIVE = [] include Aws::Structure end |