Interface ApplicationCodeConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationCodeConfiguration.Builder,ApplicationCodeConfiguration>,SdkBuilder<ApplicationCodeConfiguration.Builder,ApplicationCodeConfiguration>,SdkPojo
- Enclosing class:
- ApplicationCodeConfiguration
public static interface ApplicationCodeConfiguration.Builder extends SdkPojo, CopyableBuilder<ApplicationCodeConfiguration.Builder,ApplicationCodeConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ApplicationCodeConfiguration.BuildercodeContent(Consumer<CodeContent.Builder> codeContent)The location and type of the application code.ApplicationCodeConfiguration.BuildercodeContent(CodeContent codeContent)The location and type of the application code.ApplicationCodeConfiguration.BuildercodeContentType(String codeContentType)Specifies whether the code content is in text or zip format.ApplicationCodeConfiguration.BuildercodeContentType(CodeContentType codeContentType)Specifies whether the code content is in text or zip format.-
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, sdkFields
-
-
-
-
Method Detail
-
codeContent
ApplicationCodeConfiguration.Builder codeContent(CodeContent codeContent)
The location and type of the application code.
- Parameters:
codeContent- The location and type of the application code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeContent
default ApplicationCodeConfiguration.Builder codeContent(Consumer<CodeContent.Builder> codeContent)
The location and type of the application code.
This is a convenience method that creates an instance of theCodeContent.Builderavoiding the need to create one manually viaCodeContent.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocodeContent(CodeContent).- Parameters:
codeContent- a consumer that will call methods onCodeContent.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
codeContent(CodeContent)
-
codeContentType
ApplicationCodeConfiguration.Builder codeContentType(String codeContentType)
Specifies whether the code content is in text or zip format.
- Parameters:
codeContentType- Specifies whether the code content is in text or zip format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CodeContentType,CodeContentType
-
codeContentType
ApplicationCodeConfiguration.Builder codeContentType(CodeContentType codeContentType)
Specifies whether the code content is in text or zip format.
- Parameters:
codeContentType- Specifies whether the code content is in text or zip format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CodeContentType,CodeContentType
-
-