Class: Aws::CodeBuild::Types::CloudWatchLogsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeBuild::Types::CloudWatchLogsConfig
- Defined in:
- gems/aws-sdk-codebuild/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.
1319 1320 1321 1322 1323 1324 1325 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1319 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.
1319 1320 1321 1322 1323 1324 1325 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1319 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.
1319 1320 1321 1322 1323 1324 1325 |
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 1319 class CloudWatchLogsConfig < Struct.new( :status, :group_name, :stream_name) SENSITIVE = [] include Aws::Structure end |