@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:11.852Z") @Stability(value=Stable) public interface CfnLogGroupProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.logs.*;
CfnLogGroupProps cfnLogGroupProps = CfnLogGroupProps.builder()
.kmsKeyId("kmsKeyId")
.logGroupName("logGroupName")
.retentionInDays(123)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLogGroupProps.Builder
A builder for
CfnLogGroupProps |
static class |
CfnLogGroupProps.Jsii$Proxy
An implementation for
CfnLogGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnLogGroupProps.Builder |
builder() |
default String |
getKmsKeyId()
The Amazon Resource Name (ARN) of the CMK to use when encrypting log data.
|
default String |
getLogGroupName()
The name of the log group.
|
default Number |
getRetentionInDays()
The number of days to retain the log events in the specified log group.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to the log group.
|
@Stability(value=Stable) @Nullable default String getKmsKeyId()
@Stability(value=Stable) @Nullable default String getLogGroupName()
If you don't specify a name, AWS CloudFormation generates a unique ID for the log group.
@Stability(value=Stable) @Nullable default Number getRetentionInDays()
Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1827, and 3653.
To set a log group to never have log events expire, use DeleteRetentionPolicy .
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnLogGroupProps.Builder builder()
CfnLogGroupProps.Builder of CfnLogGroupPropsCopyright © 2022. All rights reserved.