Class: Aws::CloudTrail::Types::Channel
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudTrail::Types::Channel
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudtrail/types.rb
 
Overview
Contains information about a returned CloudTrail channel.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #channel_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of a channel.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the CloudTrail channel.
 
Instance Attribute Details
#channel_arn ⇒ String
The Amazon Resource Name (ARN) of a channel.
      546 547 548 549 550 551  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 546 class Channel < Struct.new( :channel_arn, :name) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the CloudTrail channel. For service-linked channels, the name is ‘aws-service-channel/service-name/custom-suffix` where `service-name` represents the name of the Amazon Web Services service that created the channel and `custom-suffix` represents the suffix created by the Amazon Web Services service.
      546 547 548 549 550 551  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 546 class Channel < Struct.new( :channel_arn, :name) SENSITIVE = [] include Aws::Structure end  |