Interface ProjectDataDelivery.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProjectDataDelivery.Builder,ProjectDataDelivery>,SdkBuilder<ProjectDataDelivery.Builder,ProjectDataDelivery>,SdkPojo
- Enclosing class:
- ProjectDataDelivery
public static interface ProjectDataDelivery.Builder extends SdkPojo, CopyableBuilder<ProjectDataDelivery.Builder,ProjectDataDelivery>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ProjectDataDelivery.BuildercloudWatchLogs(Consumer<CloudWatchLogsDestination.Builder> cloudWatchLogs)If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.ProjectDataDelivery.BuildercloudWatchLogs(CloudWatchLogsDestination cloudWatchLogs)If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.default ProjectDataDelivery.Builders3Destination(Consumer<S3Destination.Builder> s3Destination)If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.ProjectDataDelivery.Builders3Destination(S3Destination s3Destination)If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.-
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
-
cloudWatchLogs
ProjectDataDelivery.Builder cloudWatchLogs(CloudWatchLogsDestination cloudWatchLogs)
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
- Parameters:
cloudWatchLogs- If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
cloudWatchLogs
default ProjectDataDelivery.Builder cloudWatchLogs(Consumer<CloudWatchLogsDestination.Builder> cloudWatchLogs)
If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.
This is a convenience method that creates an instance of theCloudWatchLogsDestination.Builderavoiding the need to create one manually viaCloudWatchLogsDestination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocloudWatchLogs(CloudWatchLogsDestination).- Parameters:
cloudWatchLogs- a consumer that will call methods onCloudWatchLogsDestination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
cloudWatchLogs(CloudWatchLogsDestination)
-
s3Destination
ProjectDataDelivery.Builder s3Destination(S3Destination s3Destination)
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
- Parameters:
s3Destination- If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Destination
default ProjectDataDelivery.Builder s3Destination(Consumer<S3Destination.Builder> s3Destination)
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.
This is a convenience method that creates an instance of theS3Destination.Builderavoiding the need to create one manually viaS3Destination.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Destination(S3Destination).- Parameters:
s3Destination- a consumer that will call methods onS3Destination.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Destination(S3Destination)
-
-