Interface ApplicationCodeConfigurationUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ApplicationCodeConfigurationUpdate.Builder,ApplicationCodeConfigurationUpdate>,SdkBuilder<ApplicationCodeConfigurationUpdate.Builder,ApplicationCodeConfigurationUpdate>,SdkPojo
- Enclosing class:
- ApplicationCodeConfigurationUpdate
public static interface ApplicationCodeConfigurationUpdate.Builder extends SdkPojo, CopyableBuilder<ApplicationCodeConfigurationUpdate.Builder,ApplicationCodeConfigurationUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ApplicationCodeConfigurationUpdate.BuildercodeContentTypeUpdate(String codeContentTypeUpdate)Describes updates to the code content type.ApplicationCodeConfigurationUpdate.BuildercodeContentTypeUpdate(CodeContentType codeContentTypeUpdate)Describes updates to the code content type.default ApplicationCodeConfigurationUpdate.BuildercodeContentUpdate(Consumer<CodeContentUpdate.Builder> codeContentUpdate)Describes updates to the code content of an application.ApplicationCodeConfigurationUpdate.BuildercodeContentUpdate(CodeContentUpdate codeContentUpdate)Describes updates to the code content of an application.-
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
-
codeContentTypeUpdate
ApplicationCodeConfigurationUpdate.Builder codeContentTypeUpdate(String codeContentTypeUpdate)
Describes updates to the code content type.
- Parameters:
codeContentTypeUpdate- Describes updates to the code content type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CodeContentType,CodeContentType
-
codeContentTypeUpdate
ApplicationCodeConfigurationUpdate.Builder codeContentTypeUpdate(CodeContentType codeContentTypeUpdate)
Describes updates to the code content type.
- Parameters:
codeContentTypeUpdate- Describes updates to the code content type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CodeContentType,CodeContentType
-
codeContentUpdate
ApplicationCodeConfigurationUpdate.Builder codeContentUpdate(CodeContentUpdate codeContentUpdate)
Describes updates to the code content of an application.
- Parameters:
codeContentUpdate- Describes updates to the code content of an application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
codeContentUpdate
default ApplicationCodeConfigurationUpdate.Builder codeContentUpdate(Consumer<CodeContentUpdate.Builder> codeContentUpdate)
Describes updates to the code content of an application.
This is a convenience method that creates an instance of theCodeContentUpdate.Builderavoiding the need to create one manually viaCodeContentUpdate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocodeContentUpdate(CodeContentUpdate).- Parameters:
codeContentUpdate- a consumer that will call methods onCodeContentUpdate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
codeContentUpdate(CodeContentUpdate)
-
-