Interface SigningImageFormat.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SigningImageFormat.Builder,SigningImageFormat>,SdkBuilder<SigningImageFormat.Builder,SigningImageFormat>,SdkPojo
- Enclosing class:
- SigningImageFormat
public static interface SigningImageFormat.Builder extends SdkPojo, CopyableBuilder<SigningImageFormat.Builder,SigningImageFormat>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SigningImageFormat.BuilderdefaultFormat(String defaultFormat)The default format of a code signing image.SigningImageFormat.BuilderdefaultFormat(ImageFormat defaultFormat)The default format of a code signing image.SigningImageFormat.BuildersupportedFormats(Collection<ImageFormat> supportedFormats)The supported formats of a code signing image.SigningImageFormat.BuildersupportedFormats(ImageFormat... supportedFormats)The supported formats of a code signing image.SigningImageFormat.BuildersupportedFormatsWithStrings(String... supportedFormats)The supported formats of a code signing image.SigningImageFormat.BuildersupportedFormatsWithStrings(Collection<String> supportedFormats)The supported formats of a code signing image.-
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
-
supportedFormatsWithStrings
SigningImageFormat.Builder supportedFormatsWithStrings(Collection<String> supportedFormats)
The supported formats of a code signing image.
- Parameters:
supportedFormats- The supported formats of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedFormatsWithStrings
SigningImageFormat.Builder supportedFormatsWithStrings(String... supportedFormats)
The supported formats of a code signing image.
- Parameters:
supportedFormats- The supported formats of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedFormats
SigningImageFormat.Builder supportedFormats(Collection<ImageFormat> supportedFormats)
The supported formats of a code signing image.
- Parameters:
supportedFormats- The supported formats of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedFormats
SigningImageFormat.Builder supportedFormats(ImageFormat... supportedFormats)
The supported formats of a code signing image.
- Parameters:
supportedFormats- The supported formats of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
defaultFormat
SigningImageFormat.Builder defaultFormat(String defaultFormat)
The default format of a code signing image.
- Parameters:
defaultFormat- The default format of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageFormat,ImageFormat
-
defaultFormat
SigningImageFormat.Builder defaultFormat(ImageFormat defaultFormat)
The default format of a code signing image.
- Parameters:
defaultFormat- The default format of a code signing image.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageFormat,ImageFormat
-
-