Interface CfnProject.S3LogsConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.S3LogsConfigProperty.Jsii$Proxy
- Enclosing class:
- CfnProject
@Stability(Stable)
public static interface CfnProject.S3LogsConfigProperty
extends software.amazon.jsii.JsiiSerializable
S3Logs is a property of the AWS CodeBuild Project LogsConfig property type that specifies settings for logs generated by an AWS CodeBuild build in an S3 bucket.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.S3LogsConfigPropertystatic final classAn implementation forCfnProject.S3LogsConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getStatus
The current status of the S3 build logs. Valid values are:.ENABLED: S3 build logs are enabled for this build project.DISABLED: S3 build logs are not enabled for this build project.
-
getEncryptionDisabled
Set to true if you do not want your S3 build log output encrypted.By default S3 build logs are encrypted.
-
getLocation
The ARN of an S3 bucket and the path prefix for S3 logs.If your Amazon S3 bucket name is
my-bucket, and your path prefix isbuild-log, then acceptable formats aremy-bucket/build-logorarn:aws:s3:::my-bucket/build-log. -
builder
-