interface CfnLogGroupProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Logs.CfnLogGroupProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslogs#CfnLogGroupProps |
![]() | software.amazon.awscdk.services.logs.CfnLogGroupProps |
![]() | aws_cdk.aws_logs.CfnLogGroupProps |
![]() | aws-cdk-lib » aws_logs » CfnLogGroupProps |
Properties for defining a CfnLogGroup
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from 'aws-cdk-lib';
declare const dataProtectionPolicy: any;
declare const fieldIndexPolicies: any;
const cfnLogGroupProps: logs.CfnLogGroupProps = {
dataProtectionPolicy: dataProtectionPolicy,
fieldIndexPolicies: [fieldIndexPolicies],
kmsKeyId: 'kmsKeyId',
logGroupClass: 'logGroupClass',
logGroupName: 'logGroupName',
retentionInDays: 123,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
data | any | Creates a data protection policy and assigns it to the log group. |
field | any[] | IResolvable | Creates or updates a field index policy for the specified log group. |
kms | string | The Amazon Resource Name (ARN) of the AWS KMS key to use when encrypting log data. |
log | string | Specifies the log group class for this log group. There are two classes:. |
log | string | The name of the log group. |
retention | number | The number of days to retain the log events in the specified log group. |
tags? | Cfn [] | An array of key-value pairs to apply to the log group. |
dataProtectionPolicy?
Type:
any
(optional)
Creates a data protection policy and assigns it to the log group.
A data protection policy can help safeguard sensitive data that's ingested by the log group by auditing and masking the sensitive log data. When a user who does not have permission to view masked data views a log event that includes masked data, the sensitive data is replaced by asterisks.
For more information, including a list of types of data that can be audited and masked, see Protect sensitive log data with masking .
fieldIndexPolicies?
Type:
any[] |
IResolvable
(optional)
Creates or updates a field index policy for the specified log group.
Only log groups in the Standard log class support field index policies. For more information about log classes, see Log classes .
You can use field index policies to create field indexes on fields found in log events in the log group. Creating field indexes lowers the costs for CloudWatch Logs Insights queries that reference those field indexes, because these queries attempt to skip the processing of log events that are known to not match the indexed field. Good fields to index are fields that you often need to query for and fields that have high cardinality of values Common examples of indexes include request ID, session ID, userID, and instance IDs. For more information, see Create field indexes to improve query performance and reduce costs .
Currently, this array supports only one field index policy object.
kmsKeyId?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the AWS KMS key to use when encrypting log data.
To associate an AWS KMS key with the log group, specify the ARN of that KMS key here. If you do so, ingested data is encrypted using this key. This association is stored as long as the data encrypted with the KMS key is still within CloudWatch Logs . This enables CloudWatch Logs to decrypt this data whenever it is requested.
If you attempt to associate a KMS key with the log group but the KMS key doesn't exist or is deactivated, you will receive an InvalidParameterException
error.
Log group data is always encrypted in CloudWatch Logs . If you omit this key, the encryption does not use AWS KMS . For more information, see Encrypt log data in CloudWatch Logs using AWS Key Management Service
logGroupClass?
Type:
string
(optional, default: "STANDARD")
Specifies the log group class for this log group. There are two classes:.
- The
Standard
log class supports all CloudWatch Logs features. - The
Infrequent Access
log class supports a subset of CloudWatch Logs features and incurs lower costs.
For details about the features supported by each class, see Log classes
logGroupName?
Type:
string
(optional)
The name of the log group.
If you don't specify a name, AWS CloudFormation generates a unique ID for the log group.
retentionInDays?
Type:
number
(optional)
The number of days to retain the log events in the specified log group.
Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1096, 1827, 2192, 2557, 2922, 3288, and 3653.
To set a log group so that its log events do not expire, use DeleteRetentionPolicy .
tags?
Type:
Cfn
[]
(optional)
An array of key-value pairs to apply to the log group.
For more information, see Tag .