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)


5866
5867
5868
5869
5870
5871
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5866

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)


5866
5867
5868
5869
5870
5871
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5866

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