Class: Aws::CloudFormation::Types::LoggingConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb

Overview

Contains logging configuration information for an extension.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#log_group_nameString

The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.

Returns:

  • (String)


5875
5876
5877
5878
5879
5880
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5875

class LoggingConfig < Struct.new(
  :log_role_arn,
  :log_group_name)
  SENSITIVE = []
  include Aws::Structure
end

#log_role_arnString

The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.

Returns:

  • (String)


5875
5876
5877
5878
5879
5880
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5875

class LoggingConfig < Struct.new(
  :log_role_arn,
  :log_group_name)
  SENSITIVE = []
  include Aws::Structure
end