Interface ReportExportConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ReportExportConfig.Builder,ReportExportConfig>,SdkBuilder<ReportExportConfig.Builder,ReportExportConfig>,SdkPojo
- Enclosing class:
- ReportExportConfig
public static interface ReportExportConfig.Builder extends SdkPojo, CopyableBuilder<ReportExportConfig.Builder,ReportExportConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ReportExportConfig.BuilderexportConfigType(String exportConfigType)The export configuration type.ReportExportConfig.BuilderexportConfigType(ReportExportConfigType exportConfigType)The export configuration type.default ReportExportConfig.Builders3Destination(Consumer<S3ReportExportConfig.Builder> s3Destination)AS3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.ReportExportConfig.Builders3Destination(S3ReportExportConfig s3Destination)AS3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.-
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
-
exportConfigType
ReportExportConfig.Builder exportConfigType(String exportConfigType)
The export configuration type. Valid values are:
-
S3: The report results are exported to an S3 bucket. -
NO_EXPORT: The report results are not exported.
- Parameters:
exportConfigType- The export configuration type. Valid values are:-
S3: The report results are exported to an S3 bucket. -
NO_EXPORT: The report results are not exported.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportExportConfigType,ReportExportConfigType
-
-
exportConfigType
ReportExportConfig.Builder exportConfigType(ReportExportConfigType exportConfigType)
The export configuration type. Valid values are:
-
S3: The report results are exported to an S3 bucket. -
NO_EXPORT: The report results are not exported.
- Parameters:
exportConfigType- The export configuration type. Valid values are:-
S3: The report results are exported to an S3 bucket. -
NO_EXPORT: The report results are not exported.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ReportExportConfigType,ReportExportConfigType
-
-
s3Destination
ReportExportConfig.Builder s3Destination(S3ReportExportConfig s3Destination)
A
S3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.- Parameters:
s3Destination- AS3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Destination
default ReportExportConfig.Builder s3Destination(Consumer<S3ReportExportConfig.Builder> s3Destination)
A
This is a convenience method that creates an instance of theS3ReportExportConfigobject that contains information about the S3 bucket where the run of a report is exported.S3ReportExportConfig.Builderavoiding the need to create one manually viaS3ReportExportConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Destination(S3ReportExportConfig).- Parameters:
s3Destination- a consumer that will call methods onS3ReportExportConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Destination(S3ReportExportConfig)
-
-