@Stability(value=Stable)
public static interface CfnProject.S3LogsConfigProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codebuild.*;
S3LogsConfigProperty s3LogsConfigProperty = S3LogsConfigProperty.builder()
.status("status")
// the properties below are optional
.encryptionDisabled(false)
.location("location")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProject.S3LogsConfigProperty.Builder
A builder for
CfnProject.S3LogsConfigProperty |
static class |
CfnProject.S3LogsConfigProperty.Jsii$Proxy
An implementation for
CfnProject.S3LogsConfigProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnProject.S3LogsConfigProperty.Builder |
builder() |
default Object |
getEncryptionDisabled()
Set to true if you do not want your S3 build log output encrypted.
|
default String |
getLocation()
The ARN of an S3 bucket and the path prefix for S3 logs.
|
String |
getStatus()
The current status of the S3 build logs.
|
@Stability(value=Stable) @NotNull String getStatus()
ENABLED : S3 build logs are enabled for this build project.DISABLED : S3 build logs are not enabled for this build project.@Stability(value=Stable) @Nullable default Object getEncryptionDisabled()
By default S3 build logs are encrypted.
@Stability(value=Stable) @Nullable default String getLocation()
If your Amazon S3 bucket name is my-bucket , and your path prefix is build-log , then acceptable formats are my-bucket/build-log or arn:aws:s3:::my-bucket/build-log .
@Stability(value=Stable) static CfnProject.S3LogsConfigProperty.Builder builder()
Copyright © 2022. All rights reserved.