Class CfnLogGroup

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:32.253Z") @Stability(Stable) public class CfnLogGroup extends CfnResource implements IInspectable, ITaggable
The AWS::Logs::LogGroup resource specifies a log group.

A log group defines common properties for log streams, such as their retention and access control rules. Each log stream must belong to one log group.

You can create up to 1,000,000 log groups per Region per account. You must use the following guidelines when naming a log group:

  • Log group names must be unique within a Region for an AWS account.
  • Log group names can be between 1 and 512 characters long.
  • Log group names consist of the following characters: a-z, A-Z, 0-9, '_' (underscore), '-' (hyphen), '/' (forward slash), and '.' (period).

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;
 CfnLogGroup cfnLogGroup = CfnLogGroup.Builder.create(this, "MyCfnLogGroup")
         .dataProtectionPolicy(dataProtectionPolicy)
         .kmsKeyId("kmsKeyId")
         .logGroupClass("logGroupClass")
         .logGroupName("logGroupName")
         .retentionInDays(123)
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnLogGroup

      protected CfnLogGroup(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnLogGroup

      protected CfnLogGroup(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnLogGroup

      @Stability(Stable) public CfnLogGroup(@NotNull software.constructs.Construct scope, @NotNull String id, @Nullable CfnLogGroupProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties.
    • CfnLogGroup

      @Stability(Stable) public CfnLogGroup(@NotNull software.constructs.Construct scope, @NotNull String id)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrArn

      @Stability(Stable) @NotNull public String getAttrArn()
      The ARN of the log group, such as arn:aws:logs:us-west-1:123456789012:log-group:/mystack-testgroup-12ABC1AB12A1:*.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getDataProtectionPolicy

      @Stability(Stable) @Nullable public Object getDataProtectionPolicy()
      Creates a data protection policy and assigns it to the log group.
    • setDataProtectionPolicy

      @Stability(Stable) public void setDataProtectionPolicy(@Nullable Object value)
      Creates a data protection policy and assigns it to the log group.
    • getKmsKeyId

      @Stability(Stable) @Nullable public String getKmsKeyId()
      The Amazon Resource Name (ARN) of the AWS KMS key to use when encrypting log data.
    • setKmsKeyId

      @Stability(Stable) public void setKmsKeyId(@Nullable String value)
      The Amazon Resource Name (ARN) of the AWS KMS key to use when encrypting log data.
    • getLogGroupClass

      @Stability(Stable) @Nullable public String getLogGroupClass()
      Specifies the log group class for this log group.

      There are two classes:.

    • setLogGroupClass

      @Stability(Stable) public void setLogGroupClass(@Nullable String value)
      Specifies the log group class for this log group.

      There are two classes:.

    • getLogGroupName

      @Stability(Stable) @Nullable public String getLogGroupName()
      The name of the log group.
    • setLogGroupName

      @Stability(Stable) public void setLogGroupName(@Nullable String value)
      The name of the log group.
    • getRetentionInDays

      @Stability(Stable) @Nullable public Number getRetentionInDays()
      The number of days to retain the log events in the specified log group.
    • setRetentionInDays

      @Stability(Stable) public void setRetentionInDays(@Nullable Number value)
      The number of days to retain the log events in the specified log group.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      An array of key-value pairs to apply to the log group.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      An array of key-value pairs to apply to the log group.