public static interface LogsLocation.Builder extends SdkPojo, CopyableBuilder<LogsLocation.Builder,LogsLocation>
Modifier and Type | Method and Description |
---|---|
LogsLocation.Builder |
cloudWatchLogs(CloudWatchLogsConfig cloudWatchLogs)
Information about Amazon CloudWatch Logs for a build project.
|
default LogsLocation.Builder |
cloudWatchLogs(Consumer<CloudWatchLogsConfig.Builder> cloudWatchLogs)
Information about Amazon CloudWatch Logs for a build project.
|
LogsLocation.Builder |
deepLink(String deepLink)
The URL to an individual build log in Amazon CloudWatch Logs.
|
LogsLocation.Builder |
groupName(String groupName)
The name of the Amazon CloudWatch Logs group for the build logs.
|
LogsLocation.Builder |
s3DeepLink(String s3DeepLink)
The URL to a build log in an S3 bucket.
|
default LogsLocation.Builder |
s3Logs(Consumer<S3LogsConfig.Builder> s3Logs)
Information about S3 logs for a build project.
|
LogsLocation.Builder |
s3Logs(S3LogsConfig s3Logs)
Information about S3 logs for a build project.
|
LogsLocation.Builder |
streamName(String streamName)
The name of the Amazon CloudWatch Logs stream for the build logs.
|
copy
applyMutation, build
LogsLocation.Builder groupName(String groupName)
The name of the Amazon CloudWatch Logs group for the build logs.
groupName
- The name of the Amazon CloudWatch Logs group for the build logs.LogsLocation.Builder streamName(String streamName)
The name of the Amazon CloudWatch Logs stream for the build logs.
streamName
- The name of the Amazon CloudWatch Logs stream for the build logs.LogsLocation.Builder deepLink(String deepLink)
The URL to an individual build log in Amazon CloudWatch Logs.
deepLink
- The URL to an individual build log in Amazon CloudWatch Logs.LogsLocation.Builder s3DeepLink(String s3DeepLink)
The URL to a build log in an S3 bucket.
s3DeepLink
- The URL to a build log in an S3 bucket.LogsLocation.Builder cloudWatchLogs(CloudWatchLogsConfig cloudWatchLogs)
Information about Amazon CloudWatch Logs for a build project.
cloudWatchLogs
- Information about Amazon CloudWatch Logs for a build project.default LogsLocation.Builder cloudWatchLogs(Consumer<CloudWatchLogsConfig.Builder> cloudWatchLogs)
Information about Amazon CloudWatch Logs for a build project.
This is a convenience that creates an instance of theCloudWatchLogsConfig.Builder
avoiding the need
to create one manually via CloudWatchLogsConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to cloudWatchLogs(CloudWatchLogsConfig)
.cloudWatchLogs
- a consumer that will call methods on CloudWatchLogsConfig.Builder
cloudWatchLogs(CloudWatchLogsConfig)
LogsLocation.Builder s3Logs(S3LogsConfig s3Logs)
Information about S3 logs for a build project.
s3Logs
- Information about S3 logs for a build project.default LogsLocation.Builder s3Logs(Consumer<S3LogsConfig.Builder> s3Logs)
Information about S3 logs for a build project.
This is a convenience that creates an instance of theS3LogsConfig.Builder
avoiding the need to
create one manually via S3LogsConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to s3Logs(S3LogsConfig)
.s3Logs
- a consumer that will call methods on S3LogsConfig.Builder
s3Logs(S3LogsConfig)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.