public static interface CodeContent.Builder extends SdkPojo, CopyableBuilder<CodeContent.Builder,CodeContent>
Modifier and Type | Method and Description |
---|---|
default CodeContent.Builder |
s3ContentLocation(Consumer<S3ContentLocation.Builder> s3ContentLocation)
Information about the Amazon S3 bucket containing the application code.
|
CodeContent.Builder |
s3ContentLocation(S3ContentLocation s3ContentLocation)
Information about the Amazon S3 bucket containing the application code.
|
CodeContent.Builder |
textContent(String textContent)
The text-format code for a Java-based Kinesis Data Analytics application.
|
CodeContent.Builder |
zipFileContent(SdkBytes zipFileContent)
The zip-format code for a Java-based Kinesis Data Analytics application.
|
copy
applyMutation, build
CodeContent.Builder textContent(String textContent)
The text-format code for a Java-based Kinesis Data Analytics application.
textContent
- The text-format code for a Java-based Kinesis Data Analytics application.CodeContent.Builder zipFileContent(SdkBytes zipFileContent)
The zip-format code for a Java-based Kinesis Data Analytics application.
zipFileContent
- The zip-format code for a Java-based Kinesis Data Analytics application.CodeContent.Builder s3ContentLocation(S3ContentLocation s3ContentLocation)
Information about the Amazon S3 bucket containing the application code.
s3ContentLocation
- Information about the Amazon S3 bucket containing the application code.default CodeContent.Builder s3ContentLocation(Consumer<S3ContentLocation.Builder> s3ContentLocation)
Information about the Amazon S3 bucket containing the application code.
This is a convenience that creates an instance of theS3ContentLocation.Builder
avoiding the need to
create one manually via S3ContentLocation.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to s3ContentLocation(S3ContentLocation)
.s3ContentLocation
- a consumer that will call methods on S3ContentLocation.Builder
s3ContentLocation(S3ContentLocation)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.