Class CfnLogGroupProps.Builder
java.lang.Object
software.amazon.awscdk.services.logs.CfnLogGroupProps.Builder
- All Implemented Interfaces:
software.amazon.jsii.Builder<CfnLogGroupProps>
- Enclosing interface:
CfnLogGroupProps
@Stability(Stable)
public static final class CfnLogGroupProps.Builder
extends Object
implements software.amazon.jsii.Builder<CfnLogGroupProps>
A builder for
CfnLogGroupProps
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbuild()
Builds the configured instance.dataProtectionPolicy
(Object dataProtectionPolicy) Sets the value ofCfnLogGroupProps.getDataProtectionPolicy()
Sets the value ofCfnLogGroupProps.getKmsKeyId()
logGroupName
(String logGroupName) Sets the value ofCfnLogGroupProps.getLogGroupName()
retentionInDays
(Number retentionInDays) Sets the value ofCfnLogGroupProps.getRetentionInDays()
Sets the value ofCfnLogGroupProps.getTags()
-
Constructor Details
-
Builder
public Builder()
-
-
Method Details
-
dataProtectionPolicy
@Stability(Stable) public CfnLogGroupProps.Builder dataProtectionPolicy(Object dataProtectionPolicy) Sets the value ofCfnLogGroupProps.getDataProtectionPolicy()
- Parameters:
dataProtectionPolicy
- 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 .
- Returns:
this
-
kmsKeyId
Sets the value ofCfnLogGroupProps.getKmsKeyId()
- Parameters:
kmsKeyId
- 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
- Returns:
this
-
logGroupName
Sets the value ofCfnLogGroupProps.getLogGroupName()
- Parameters:
logGroupName
- The name of the log group. If you don't specify a name, AWS CloudFormation generates a unique ID for the log group.- Returns:
this
-
retentionInDays
Sets the value ofCfnLogGroupProps.getRetentionInDays()
- Parameters:
retentionInDays
- 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 .
- Returns:
this
-
tags
Sets the value ofCfnLogGroupProps.getTags()
- Parameters:
tags
- An array of key-value pairs to apply to the log group. For more information, see Tag .- Returns:
this
-
build
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<CfnLogGroupProps>
- Returns:
- a new instance of
CfnLogGroupProps
- Throws:
NullPointerException
- if any required attribute was not provided
-