Class: Aws::NetworkManager::Types::CoreNetworkChangeEvent
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::NetworkManager::Types::CoreNetworkChangeEvent
 
- Defined in:
- gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb
Overview
Describes a core network change event. This can be a change to a segment, attachment, route, etc.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action taken for the change event. 
- 
  
    
      #event_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The timestamp for an event change in status. 
- 
  
    
      #identifier_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Uniquely identifies the path for a change within the changeset. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the core network change event. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Describes the type of change event. 
- 
  
    
      #values  ⇒ Types::CoreNetworkChangeEventValues 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Details of the change event. 
Instance Attribute Details
#action ⇒ String
The action taken for the change event.
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end | 
#event_time ⇒ Time
The timestamp for an event change in status.
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end | 
#identifier_path ⇒ String
Uniquely identifies the path for a change within the changeset. For
example, the IdentifierPath for a core network segment change
might be "CORE_NETWORK_SEGMENT/us-east-1/devsegment".
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the core network change event.
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
Describes the type of change event.
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end | 
#values ⇒ Types::CoreNetworkChangeEventValues
Details of the change event.
| 924 925 926 927 928 929 930 931 932 933 | # File 'gems/aws-sdk-networkmanager/lib/aws-sdk-networkmanager/types.rb', line 924 class CoreNetworkChangeEvent < Struct.new( :type, :action, :identifier_path, :event_time, :status, :values) SENSITIVE = [] include Aws::Structure end |