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