
com.pulumi.aws.codebuild.inputs.ReportGroupExportConfigS3DestinationArgs Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.codebuild.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ReportGroupExportConfigS3DestinationArgs extends com.pulumi.resources.ResourceArgs {
public static final ReportGroupExportConfigS3DestinationArgs Empty = new ReportGroupExportConfigS3DestinationArgs();
/**
* The name of the S3 bucket where the raw data of a report are exported.
*
*/
@Import(name="bucket", required=true)
private Output bucket;
/**
* @return The name of the S3 bucket where the raw data of a report are exported.
*
*/
public Output bucket() {
return this.bucket;
}
/**
* A boolean value that specifies if the results of a report are encrypted.
* **Note: the API does not currently allow setting encryption as disabled**
*
*/
@Import(name="encryptionDisabled")
private @Nullable Output encryptionDisabled;
/**
* @return A boolean value that specifies if the results of a report are encrypted.
* **Note: the API does not currently allow setting encryption as disabled**
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy