Class: Aws::CloudWatchLogs::Types::Destination
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudWatchLogs::Types::Destination
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudwatchlogs/types.rb
 
Overview
Represents a cross-account destination that receives subscription log events.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #access_policy  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An IAM policy document that governs which Amazon Web Services accounts can create subscription filters against this destination.
 - 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of this destination.
 - 
  
    
      #creation_time  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The creation time of the destination, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
 - 
  
    
      #destination_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the destination.
 - 
  
    
      #role_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A role for impersonation, used when delivering log events to the target.
 - 
  
    
      #target_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream).
 
Instance Attribute Details
#access_policy ⇒ String
An IAM policy document that governs which Amazon Web Services accounts can create subscription filters against this destination.
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  | 
  
#arn ⇒ String
The ARN of this destination.
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  | 
  
#creation_time ⇒ Integer
The creation time of the destination, expressed as the number of milliseconds after Jan 1, 1970 00:00:00 UTC.
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  | 
  
#destination_name ⇒ String
The name of the destination.
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  | 
  
#role_arn ⇒ String
A role for impersonation, used when delivering log events to the target.
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  | 
  
#target_arn ⇒ String
The Amazon Resource Name (ARN) of the physical target where the log events are delivered (for example, a Kinesis stream).
      2086 2087 2088 2089 2090 2091 2092 2093 2094 2095  | 
    
      # File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 2086 class Destination < Struct.new( :destination_name, :target_arn, :role_arn, :access_policy, :arn, :creation_time) SENSITIVE = [] include Aws::Structure end  |