public static interface ApplicationCodeConfiguration.Builder extends SdkPojo, CopyableBuilder<ApplicationCodeConfiguration.Builder,ApplicationCodeConfiguration>
Modifier and Type | Method and Description |
---|---|
ApplicationCodeConfiguration.Builder |
codeContent(CodeContent codeContent)
The location and type of the application code.
|
default ApplicationCodeConfiguration.Builder |
codeContent(Consumer<CodeContent.Builder> codeContent)
The location and type of the application code.
|
ApplicationCodeConfiguration.Builder |
codeContentType(CodeContentType codeContentType)
Specifies whether the code content is in text or zip format.
|
ApplicationCodeConfiguration.Builder |
codeContentType(String codeContentType)
Specifies whether the code content is in text or zip format.
|
copy
applyMutation, build
ApplicationCodeConfiguration.Builder codeContent(CodeContent codeContent)
The location and type of the application code.
codeContent
- The location and type of the application code.default ApplicationCodeConfiguration.Builder codeContent(Consumer<CodeContent.Builder> codeContent)
The location and type of the application code.
This is a convenience that creates an instance of theCodeContent.Builder
avoiding the need to create
one manually via CodeContent.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to codeContent(CodeContent)
.codeContent
- a consumer that will call methods on CodeContent.Builder
codeContent(CodeContent)
ApplicationCodeConfiguration.Builder codeContentType(String codeContentType)
Specifies whether the code content is in text or zip format.
codeContentType
- Specifies whether the code content is in text or zip format.CodeContentType
,
CodeContentType
ApplicationCodeConfiguration.Builder codeContentType(CodeContentType codeContentType)
Specifies whether the code content is in text or zip format.
codeContentType
- Specifies whether the code content is in text or zip format.CodeContentType
,
CodeContentType
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.