Interface AsyncInvokeOutputDataConfig.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AsyncInvokeOutputDataConfig.Builder,
,AsyncInvokeOutputDataConfig> SdkBuilder<AsyncInvokeOutputDataConfig.Builder,
,AsyncInvokeOutputDataConfig> SdkPojo
- Enclosing class:
AsyncInvokeOutputDataConfig
@Mutable
@NotThreadSafe
public static interface AsyncInvokeOutputDataConfig.Builder
extends SdkPojo, CopyableBuilder<AsyncInvokeOutputDataConfig.Builder,AsyncInvokeOutputDataConfig>
-
Method Summary
Modifier and TypeMethodDescriptions3OutputDataConfig
(Consumer<AsyncInvokeS3OutputDataConfig.Builder> s3OutputDataConfig) A storage location for the output data in an S3 buckets3OutputDataConfig
(AsyncInvokeS3OutputDataConfig s3OutputDataConfig) A storage location for the output data in an S3 bucketMethods 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
-
s3OutputDataConfig
AsyncInvokeOutputDataConfig.Builder s3OutputDataConfig(AsyncInvokeS3OutputDataConfig s3OutputDataConfig) A storage location for the output data in an S3 bucket
- Parameters:
s3OutputDataConfig
- A storage location for the output data in an S3 bucket- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3OutputDataConfig
default AsyncInvokeOutputDataConfig.Builder s3OutputDataConfig(Consumer<AsyncInvokeS3OutputDataConfig.Builder> s3OutputDataConfig) A storage location for the output data in an S3 bucket
This is a convenience method that creates an instance of theAsyncInvokeS3OutputDataConfig.Builder
avoiding the need to create one manually viaAsyncInvokeS3OutputDataConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3OutputDataConfig(AsyncInvokeS3OutputDataConfig)
.- Parameters:
s3OutputDataConfig
- a consumer that will call methods onAsyncInvokeS3OutputDataConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-