Class: Aws::CloudWatchLogs::Types::CreateLogGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudwatchlogs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

The Amazon Resource Name (ARN) of the KMS key to use when encrypting log data. For more information, see [Amazon Resource Names].

[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms

Returns:

  • (String)


611
612
613
614
615
616
617
618
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 611

class CreateLogGroupRequest < Struct.new(
  :log_group_name,
  :kms_key_id,
  :tags,
  :log_group_class)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_classString

Use this parameter to specify the log group class for this log group. There are two classes:

  • The ‘Standard` log class supports all CloudWatch Logs features.

  • The ‘Infrequent Access` log class supports a subset of CloudWatch Logs features and incurs lower costs.

If you omit this parameter, the default of ‘STANDARD` is used.

The value of ‘logGroupClass` can’t be changed after a log group is created.

For details about the features supported by each class, see [Log classes]

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch_Logs_Log_Classes.html

Returns:

  • (String)


611
612
613
614
615
616
617
618
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 611

class CreateLogGroupRequest < Struct.new(
  :log_group_name,
  :kms_key_id,
  :tags,
  :log_group_class)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_nameString

A name for the log group.

Returns:

  • (String)


611
612
613
614
615
616
617
618
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 611

class CreateLogGroupRequest < Struct.new(
  :log_group_name,
  :kms_key_id,
  :tags,
  :log_group_class)
  SENSITIVE = []
  include Aws::Structure
end

#tagsHash<String,String>

The key-value pairs to use for the tags.

You can grant users access to certain log groups while preventing them from accessing other log groups. To do so, tag your groups and use IAM policies that refer to those tags. To assign tags when you create a log group, you must have either the ‘logs:TagResource` or `logs:TagLogGroup` permission. For more information about tagging, see [Tagging Amazon Web Services resources]. For more information about using tags to control access, see [Controlling access to Amazon Web Services resources using tags].

[1]: docs.aws.amazon.com/general/latest/gr/aws_tagging.html [2]: docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html

Returns:

  • (Hash<String,String>)


611
612
613
614
615
616
617
618
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 611

class CreateLogGroupRequest < Struct.new(
  :log_group_name,
  :kms_key_id,
  :tags,
  :log_group_class)
  SENSITIVE = []
  include Aws::Structure
end