Interface ProjectDataDeliveryConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<ProjectDataDeliveryConfig.Builder,
,ProjectDataDeliveryConfig> SdkBuilder<ProjectDataDeliveryConfig.Builder,
,ProjectDataDeliveryConfig> SdkPojo
- Enclosing class:
ProjectDataDeliveryConfig
@Mutable
@NotThreadSafe
public static interface ProjectDataDeliveryConfig.Builder
extends SdkPojo, CopyableBuilder<ProjectDataDeliveryConfig.Builder,ProjectDataDeliveryConfig>
-
Method Summary
Modifier and TypeMethodDescriptioncloudWatchLogs
(Consumer<CloudWatchLogsDestinationConfig.Builder> cloudWatchLogs) If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.cloudWatchLogs
(CloudWatchLogsDestinationConfig cloudWatchLogs) If the project stores evaluation events in CloudWatch Logs, this structure stores the log group name.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.s3Destination
(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 Details
-
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.Builder
avoiding the need to create one manually viaCloudWatchLogsDestinationConfig.builder()
.When the
Consumer
completes,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:
-
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.Builder
avoiding the need to create one manually viaS3DestinationConfig.builder()
.When the
Consumer
completes,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:
-