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