Interface CfnLogGroupProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnLogGroupProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-02T11:25:35.331Z") @Stability(Stable) public interface CfnLogGroupProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnLogGroup.

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.*;
 Object dataProtectionPolicy;
 Object fieldIndexPolicies;
 Object resourcePolicyDocument;
 CfnLogGroupProps cfnLogGroupProps = CfnLogGroupProps.builder()
         .dataProtectionPolicy(dataProtectionPolicy)
         .fieldIndexPolicies(List.of(fieldIndexPolicies))
         .kmsKeyId("kmsKeyId")
         .logGroupClass("logGroupClass")
         .logGroupName("logGroupName")
         .resourcePolicyDocument(resourcePolicyDocument)
         .retentionInDays(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: