Interface S3ReportExportConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<S3ReportExportConfig.Builder,S3ReportExportConfig>,SdkBuilder<S3ReportExportConfig.Builder,S3ReportExportConfig>,SdkPojo
- Enclosing class:
- S3ReportExportConfig
public static interface S3ReportExportConfig.Builder extends SdkPojo, CopyableBuilder<S3ReportExportConfig.Builder,S3ReportExportConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description S3ReportExportConfig.Builderbucket(String bucket)The name of the S3 bucket where the raw data of a report are exported.S3ReportExportConfig.BuilderbucketOwner(String bucketOwner)The Amazon Web Services account identifier of the owner of the Amazon S3 bucket.S3ReportExportConfig.BuilderencryptionDisabled(Boolean encryptionDisabled)A boolean value that specifies if the results of a report are encrypted.S3ReportExportConfig.BuilderencryptionKey(String encryptionKey)The encryption key for the report's encrypted raw data.S3ReportExportConfig.Builderpackaging(String packaging)The type of build output artifact to create.S3ReportExportConfig.Builderpackaging(ReportPackagingType packaging)The type of build output artifact to create.S3ReportExportConfig.Builderpath(String path)The path to the exported report's raw data results.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
bucket
S3ReportExportConfig.Builder bucket(String bucket)
The name of the S3 bucket where the raw data of a report are exported.
- Parameters:
bucket- The name of the S3 bucket where the raw data of a report are exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
bucketOwner
S3ReportExportConfig.Builder bucketOwner(String bucketOwner)
The Amazon Web Services account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.
- Parameters:
bucketOwner- The Amazon Web Services account identifier of the owner of the Amazon S3 bucket. This allows report data to be exported to an Amazon S3 bucket that is owned by an account other than the account running the build.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
path
S3ReportExportConfig.Builder path(String path)
The path to the exported report's raw data results.
- Parameters:
path- The path to the exported report's raw data results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
packaging
S3ReportExportConfig.Builder packaging(String packaging)
The type of build output artifact to create. Valid values include:
-
NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
- Parameters:
packaging- The type of build output artifact to create. Valid values include:-
NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportPackagingType,ReportPackagingType
-
-
packaging
S3ReportExportConfig.Builder packaging(ReportPackagingType packaging)
The type of build output artifact to create. Valid values include:
-
NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
- Parameters:
packaging- The type of build output artifact to create. Valid values include:-
NONE: CodeBuild creates the raw data in the output bucket. This is the default if packaging is not specified. -
ZIP: CodeBuild creates a ZIP file with the raw data in the output bucket.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportPackagingType,ReportPackagingType
-
-
encryptionKey
S3ReportExportConfig.Builder encryptionKey(String encryptionKey)
The encryption key for the report's encrypted raw data.
- Parameters:
encryptionKey- The encryption key for the report's encrypted raw data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryptionDisabled
S3ReportExportConfig.Builder encryptionDisabled(Boolean encryptionDisabled)
A boolean value that specifies if the results of a report are encrypted.
- Parameters:
encryptionDisabled- A boolean value that specifies if the results of a report are encrypted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-