Interface MonitoringOutput.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<MonitoringOutput.Builder,MonitoringOutput>
,SdkBuilder<MonitoringOutput.Builder,MonitoringOutput>
,SdkPojo
- Enclosing class:
- MonitoringOutput
public static interface MonitoringOutput.Builder extends SdkPojo, CopyableBuilder<MonitoringOutput.Builder,MonitoringOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MonitoringOutput.Builder
s3Output(Consumer<MonitoringS3Output.Builder> s3Output)
The Amazon S3 storage location where the results of a monitoring job are saved.MonitoringOutput.Builder
s3Output(MonitoringS3Output s3Output)
The Amazon S3 storage location where the results of a monitoring job are saved.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
s3Output
MonitoringOutput.Builder s3Output(MonitoringS3Output s3Output)
The Amazon S3 storage location where the results of a monitoring job are saved.
- Parameters:
s3Output
- The Amazon S3 storage location where the results of a monitoring job are saved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Output
default MonitoringOutput.Builder s3Output(Consumer<MonitoringS3Output.Builder> s3Output)
The Amazon S3 storage location where the results of a monitoring job are saved.
This is a convenience method that creates an instance of theMonitoringS3Output.Builder
avoiding the need to create one manually viaMonitoringS3Output.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3Output(MonitoringS3Output)
.- Parameters:
s3Output
- a consumer that will call methods onMonitoringS3Output.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Output(MonitoringS3Output)
-
-