Class: Aws::CodeBuild::Types::CloudWatchLogsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::CloudWatchLogsConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codebuild/types.rb
Overview
Information about CloudWatch Logs for a build project.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#group_name ⇒ String
The group name of the logs in CloudWatch Logs.
-
#status ⇒ String
The current status of the logs in CloudWatch Logs for a build project.
-
#stream_name ⇒ String
The prefix of the stream name of the CloudWatch Logs.
Instance Attribute Details
#group_name ⇒ String
The group name of the logs in CloudWatch Logs. For more information, see [Working with Log Groups and Log Streams].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html
1278 1279 1280 1281 1282 1283 1284 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1278 class CloudWatchLogsConfig < Struct.new( :status, :group_name, :stream_name) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the logs in CloudWatch Logs for a build project. Valid values are:
-
‘ENABLED`: CloudWatch Logs are enabled for this build project.
-
‘DISABLED`: CloudWatch Logs are not enabled for this build project.
1278 1279 1280 1281 1282 1283 1284 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1278 class CloudWatchLogsConfig < Struct.new( :status, :group_name, :stream_name) SENSITIVE = [] include Aws::Structure end |
#stream_name ⇒ String
The prefix of the stream name of the CloudWatch Logs. For more information, see [Working with Log Groups and Log Streams].
[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/logs/Working-with-log-groups-and-streams.html
1278 1279 1280 1281 1282 1283 1284 |
# File 'lib/aws-sdk-codebuild/types.rb', line 1278 class CloudWatchLogsConfig < Struct.new( :status, :group_name, :stream_name) SENSITIVE = [] include Aws::Structure end |