interface LoggingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CloudFormation.Mixins.CfnResourceVersionPropsMixin.LoggingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscloudformation/mixins#CfnResourceVersionPropsMixin_LoggingConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cloudformation.mixins.CfnResourceVersionPropsMixin.LoggingConfigProperty |
Python | aws_cdk.mixins_preview.aws_cloudformation.mixins.CfnResourceVersionPropsMixin.LoggingConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cloudformation » mixins » CfnResourceVersionPropsMixin » LoggingConfigProperty |
Logging configuration information for a resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as cloudformation_mixins } from '@aws-cdk/mixins-preview/aws-cloudformation';
const loggingConfigProperty: cloudformation_mixins.CfnResourceVersionPropsMixin.LoggingConfigProperty = {
logGroupName: 'logGroupName',
logRoleArn: 'logRoleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The Amazon CloudWatch logs group to which CloudFormation sends error logging information when invoking the type's handlers. |
| log | string | The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch logs. |
logGroupName?
Type:
string
(optional)
The Amazon CloudWatch logs group to which CloudFormation sends error logging information when invoking the type's handlers.
logRoleArn?
Type:
string
(optional)
The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch logs.

.NET
Go
Java
Python
TypeScript