libZSservicesZSamazonka-cloudwatch-logsZSamazonka-cloudwatch-logs
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.CloudWatchLogs.CreateLogGroup

Description

Creates a log group with the specified name. You can create up to 20,000 log groups per account.

You must use the following guidelines when naming a log group:

  • Log group names must be unique within a region for an Amazon Web Services 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), '.' (period), and '#' (number sign)

When you create a log group, by default the log events in the log group never expire. To set a retention policy so that events expire and are deleted after a specified time, use PutRetentionPolicy.

If you associate a Key Management Service customer master key (CMK) with the log group, ingested data is encrypted using the CMK. This association is stored as long as the data encrypted with the CMK is still within CloudWatch Logs. This enables CloudWatch Logs to decrypt this data whenever it is requested.

If you attempt to associate a CMK with the log group but the CMK does not exist or the CMK is disabled, you receive an InvalidParameterException error.

CloudWatch Logs supports only symmetric CMKs. Do not associate an asymmetric CMK with your log group. For more information, see Using Symmetric and Asymmetric Keys.

Synopsis

Creating a Request

data CreateLogGroup Source #

See: newCreateLogGroup smart constructor.

Constructors

CreateLogGroup' 

Fields

Instances

Instances details
Eq CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Read CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Show CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Generic CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Associated Types

type Rep CreateLogGroup :: Type -> Type #

NFData CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Methods

rnf :: CreateLogGroup -> () #

Hashable CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

ToJSON CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

AWSRequest CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Associated Types

type AWSResponse CreateLogGroup #

ToHeaders CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

ToPath CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

ToQuery CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

type Rep CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

type Rep CreateLogGroup = D1 ('MetaData "CreateLogGroup" "Amazonka.CloudWatchLogs.CreateLogGroup" "libZSservicesZSamazonka-cloudwatch-logsZSamazonka-cloudwatch-logs" 'False) (C1 ('MetaCons "CreateLogGroup'" 'PrefixI 'True) (S1 ('MetaSel ('Just "kmsKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "logGroupName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse CreateLogGroup Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

newCreateLogGroup Source #

Create a value of CreateLogGroup with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:kmsKeyId:CreateLogGroup', createLogGroup_kmsKeyId - The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see Amazon Resource Names - Key Management Service.

$sel:tags:CreateLogGroup', createLogGroup_tags - The key-value pairs to use for the tags.

CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys. For more information about using tags to control access, see Controlling access to Amazon Web Services resources using tags.

$sel:logGroupName:CreateLogGroup', createLogGroup_logGroupName - The name of the log group.

Request Lenses

createLogGroup_kmsKeyId :: Lens' CreateLogGroup (Maybe Text) Source #

The Amazon Resource Name (ARN) of the CMK to use when encrypting log data. For more information, see Amazon Resource Names - Key Management Service.

createLogGroup_tags :: Lens' CreateLogGroup (Maybe (HashMap Text Text)) Source #

The key-value pairs to use for the tags.

CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys. For more information about using tags to control access, see Controlling access to Amazon Web Services resources using tags.

Destructuring the Response

data CreateLogGroupResponse Source #

See: newCreateLogGroupResponse smart constructor.

Instances

Instances details
Eq CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Read CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Show CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Generic CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Associated Types

type Rep CreateLogGroupResponse :: Type -> Type #

NFData CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

Methods

rnf :: CreateLogGroupResponse -> () #

type Rep CreateLogGroupResponse Source # 
Instance details

Defined in Amazonka.CloudWatchLogs.CreateLogGroup

type Rep CreateLogGroupResponse = D1 ('MetaData "CreateLogGroupResponse" "Amazonka.CloudWatchLogs.CreateLogGroup" "libZSservicesZSamazonka-cloudwatch-logsZSamazonka-cloudwatch-logs" 'False) (C1 ('MetaCons "CreateLogGroupResponse'" 'PrefixI 'False) (U1 :: Type -> Type))

newCreateLogGroupResponse :: CreateLogGroupResponse Source #

Create a value of CreateLogGroupResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.