Class: NgrokAPI::Models::EventTargetCloudwatchLogs

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/event_target_cloudwatch_logs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client:, result:) ⇒ EventTargetCloudwatchLogs

Returns a new instance of EventTargetCloudwatchLogs.



11
12
13
14
15
16
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 11

def initialize(client:, result:)
  @client = client
  @result = result
  @auth = @result['auth']
  @log_group_arn = @result['log_group_arn']
end

Instance Attribute Details

#authObject (readonly)

Returns the value of attribute auth.



6
7
8
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 6

def auth
  @auth
end

#clientObject (readonly)

Returns the value of attribute client.



6
7
8
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 6

def client
  @client
end

#log_group_arnObject (readonly)

Returns the value of attribute log_group_arn.



6
7
8
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 6

def log_group_arn
  @log_group_arn
end

#resultObject (readonly)

Returns the value of attribute result.



6
7
8
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 6

def result
  @result
end

Instance Method Details

#==(other) ⇒ Object



18
19
20
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 18

def ==(other)
  @result == other.result
end

#to_sObject



22
23
24
# File 'lib/ngrokapi/models/event_target_cloudwatch_logs.rb', line 22

def to_s
  @result.to_s
end