Interface BusinessReportSchedule.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BusinessReportSchedule.Builder,BusinessReportSchedule>,SdkBuilder<BusinessReportSchedule.Builder,BusinessReportSchedule>,SdkPojo
- Enclosing class:
- BusinessReportSchedule
public static interface BusinessReportSchedule.Builder extends SdkPojo, CopyableBuilder<BusinessReportSchedule.Builder,BusinessReportSchedule>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default BusinessReportSchedule.BuildercontentRange(Consumer<BusinessReportContentRange.Builder> contentRange)The content range of the reports.BusinessReportSchedule.BuildercontentRange(BusinessReportContentRange contentRange)The content range of the reports.BusinessReportSchedule.Builderformat(String format)The format of the generated report (individual CSV files or zipped files of individual files).BusinessReportSchedule.Builderformat(BusinessReportFormat format)The format of the generated report (individual CSV files or zipped files of individual files).default BusinessReportSchedule.BuilderlastBusinessReport(Consumer<BusinessReport.Builder> lastBusinessReport)The details of the last business report delivery for a specified time interval.BusinessReportSchedule.BuilderlastBusinessReport(BusinessReport lastBusinessReport)The details of the last business report delivery for a specified time interval.default BusinessReportSchedule.Builderrecurrence(Consumer<BusinessReportRecurrence.Builder> recurrence)The recurrence of the reports.BusinessReportSchedule.Builderrecurrence(BusinessReportRecurrence recurrence)The recurrence of the reports.BusinessReportSchedule.Builders3BucketName(String s3BucketName)The S3 bucket name of the output reports.BusinessReportSchedule.Builders3KeyPrefix(String s3KeyPrefix)The S3 key where the report is delivered.BusinessReportSchedule.BuilderscheduleArn(String scheduleArn)The ARN of the business report schedule.BusinessReportSchedule.BuilderscheduleName(String scheduleName)The name identifier of the schedule.-
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
-
scheduleArn
BusinessReportSchedule.Builder scheduleArn(String scheduleArn)
The ARN of the business report schedule.
- Parameters:
scheduleArn- The ARN of the business report schedule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleName
BusinessReportSchedule.Builder scheduleName(String scheduleName)
The name identifier of the schedule.
- Parameters:
scheduleName- The name identifier of the schedule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3BucketName
BusinessReportSchedule.Builder s3BucketName(String s3BucketName)
The S3 bucket name of the output reports.
- Parameters:
s3BucketName- The S3 bucket name of the output reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3KeyPrefix
BusinessReportSchedule.Builder s3KeyPrefix(String s3KeyPrefix)
The S3 key where the report is delivered.
- Parameters:
s3KeyPrefix- The S3 key where the report is delivered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
BusinessReportSchedule.Builder format(String format)
The format of the generated report (individual CSV files or zipped files of individual files).
- Parameters:
format- The format of the generated report (individual CSV files or zipped files of individual files).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BusinessReportFormat,BusinessReportFormat
-
format
BusinessReportSchedule.Builder format(BusinessReportFormat format)
The format of the generated report (individual CSV files or zipped files of individual files).
- Parameters:
format- The format of the generated report (individual CSV files or zipped files of individual files).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
BusinessReportFormat,BusinessReportFormat
-
contentRange
BusinessReportSchedule.Builder contentRange(BusinessReportContentRange contentRange)
The content range of the reports.
- Parameters:
contentRange- The content range of the reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
contentRange
default BusinessReportSchedule.Builder contentRange(Consumer<BusinessReportContentRange.Builder> contentRange)
The content range of the reports.
This is a convenience method that creates an instance of theBusinessReportContentRange.Builderavoiding the need to create one manually viaBusinessReportContentRange.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocontentRange(BusinessReportContentRange).- Parameters:
contentRange- a consumer that will call methods onBusinessReportContentRange.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
contentRange(BusinessReportContentRange)
-
recurrence
BusinessReportSchedule.Builder recurrence(BusinessReportRecurrence recurrence)
The recurrence of the reports.
- Parameters:
recurrence- The recurrence of the reports.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recurrence
default BusinessReportSchedule.Builder recurrence(Consumer<BusinessReportRecurrence.Builder> recurrence)
The recurrence of the reports.
This is a convenience method that creates an instance of theBusinessReportRecurrence.Builderavoiding the need to create one manually viaBusinessReportRecurrence.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torecurrence(BusinessReportRecurrence).- Parameters:
recurrence- a consumer that will call methods onBusinessReportRecurrence.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
recurrence(BusinessReportRecurrence)
-
lastBusinessReport
BusinessReportSchedule.Builder lastBusinessReport(BusinessReport lastBusinessReport)
The details of the last business report delivery for a specified time interval.
- Parameters:
lastBusinessReport- The details of the last business report delivery for a specified time interval.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastBusinessReport
default BusinessReportSchedule.Builder lastBusinessReport(Consumer<BusinessReport.Builder> lastBusinessReport)
The details of the last business report delivery for a specified time interval.
This is a convenience method that creates an instance of theBusinessReport.Builderavoiding the need to create one manually viaBusinessReport.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolastBusinessReport(BusinessReport).- Parameters:
lastBusinessReport- a consumer that will call methods onBusinessReport.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
lastBusinessReport(BusinessReport)
-
-