Class: Aws::CloudFormation::Types::LoggingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::LoggingConfig
- 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
-
#log_group_name ⇒ String
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.
-
#log_role_arn ⇒ String
The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.
Instance Attribute Details
#log_group_name ⇒ String
The Amazon CloudWatch Logs group to which CloudFormation sends error logging information when invoking the extension's handlers.
5946 5947 5948 5949 5950 5951 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5946 class LoggingConfig < Struct.new( :log_role_arn, :log_group_name) SENSITIVE = [] include Aws::Structure end |
#log_role_arn ⇒ String
The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.
5946 5947 5948 5949 5950 5951 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 5946 class LoggingConfig < Struct.new( :log_role_arn, :log_group_name) SENSITIVE = [] include Aws::Structure end |