Interface ImageGenerationConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ImageGenerationConfiguration.Builder,ImageGenerationConfiguration>,SdkBuilder<ImageGenerationConfiguration.Builder,ImageGenerationConfiguration>,SdkPojo
- Enclosing class:
- ImageGenerationConfiguration
public static interface ImageGenerationConfiguration.Builder extends SdkPojo, CopyableBuilder<ImageGenerationConfiguration.Builder,ImageGenerationConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ImageGenerationConfiguration.BuilderdestinationConfig(Consumer<ImageGenerationDestinationConfig.Builder> destinationConfig)The structure that contains the information required to deliver images to a customer.ImageGenerationConfiguration.BuilderdestinationConfig(ImageGenerationDestinationConfig destinationConfig)The structure that contains the information required to deliver images to a customer.ImageGenerationConfiguration.Builderformat(String format)The accepted image format.ImageGenerationConfiguration.Builderformat(Format format)The accepted image format.ImageGenerationConfiguration.BuilderformatConfig(Map<FormatConfigKey,String> formatConfig)The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated.ImageGenerationConfiguration.BuilderformatConfigWithStrings(Map<String,String> formatConfig)The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated.ImageGenerationConfiguration.BuilderheightPixels(Integer heightPixels)The height of the output image that is used in conjunction with theWidthPixelsparameter.ImageGenerationConfiguration.BuilderimageSelectorType(String imageSelectorType)The origin of the Server or Producer timestamps to use to generate the images.ImageGenerationConfiguration.BuilderimageSelectorType(ImageSelectorType imageSelectorType)The origin of the Server or Producer timestamps to use to generate the images.ImageGenerationConfiguration.BuildersamplingInterval(Integer samplingInterval)The time interval in milliseconds (ms) at which the images need to be generated from the stream.ImageGenerationConfiguration.Builderstatus(String status)Indicates whether theContinuousImageGenerationConfigurationsAPI is enabled or disabled.ImageGenerationConfiguration.Builderstatus(ConfigurationStatus status)Indicates whether theContinuousImageGenerationConfigurationsAPI is enabled or disabled.ImageGenerationConfiguration.BuilderwidthPixels(Integer widthPixels)The width of the output image that is used in conjunction with theHeightPixelsparameter.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
status
ImageGenerationConfiguration.Builder status(String status)
Indicates whether the
ContinuousImageGenerationConfigurationsAPI is enabled or disabled.- Parameters:
status- Indicates whether theContinuousImageGenerationConfigurationsAPI is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationStatus,ConfigurationStatus
-
status
ImageGenerationConfiguration.Builder status(ConfigurationStatus status)
Indicates whether the
ContinuousImageGenerationConfigurationsAPI is enabled or disabled.- Parameters:
status- Indicates whether theContinuousImageGenerationConfigurationsAPI is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ConfigurationStatus,ConfigurationStatus
-
imageSelectorType
ImageGenerationConfiguration.Builder imageSelectorType(String imageSelectorType)
The origin of the Server or Producer timestamps to use to generate the images.
- Parameters:
imageSelectorType- The origin of the Server or Producer timestamps to use to generate the images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageSelectorType,ImageSelectorType
-
imageSelectorType
ImageGenerationConfiguration.Builder imageSelectorType(ImageSelectorType imageSelectorType)
The origin of the Server or Producer timestamps to use to generate the images.
- Parameters:
imageSelectorType- The origin of the Server or Producer timestamps to use to generate the images.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ImageSelectorType,ImageSelectorType
-
destinationConfig
ImageGenerationConfiguration.Builder destinationConfig(ImageGenerationDestinationConfig destinationConfig)
The structure that contains the information required to deliver images to a customer.
- Parameters:
destinationConfig- The structure that contains the information required to deliver images to a customer.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destinationConfig
default ImageGenerationConfiguration.Builder destinationConfig(Consumer<ImageGenerationDestinationConfig.Builder> destinationConfig)
The structure that contains the information required to deliver images to a customer.
This is a convenience method that creates an instance of theImageGenerationDestinationConfig.Builderavoiding the need to create one manually viaImageGenerationDestinationConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestinationConfig(ImageGenerationDestinationConfig).- Parameters:
destinationConfig- a consumer that will call methods onImageGenerationDestinationConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destinationConfig(ImageGenerationDestinationConfig)
-
samplingInterval
ImageGenerationConfiguration.Builder samplingInterval(Integer samplingInterval)
The time interval in milliseconds (ms) at which the images need to be generated from the stream. The minimum value that can be provided is 200 ms. If the timestamp range is less than the sampling interval, the Image from the
StartTimestampwill be returned if available.- Parameters:
samplingInterval- The time interval in milliseconds (ms) at which the images need to be generated from the stream. The minimum value that can be provided is 200 ms. If the timestamp range is less than the sampling interval, the Image from theStartTimestampwill be returned if available.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
format
ImageGenerationConfiguration.Builder format(String format)
The accepted image format.
-
format
ImageGenerationConfiguration.Builder format(Format format)
The accepted image format.
-
formatConfigWithStrings
ImageGenerationConfiguration.Builder formatConfigWithStrings(Map<String,String> formatConfig)
The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. The
FormatConfigkey is theJPEGQuality, which indicates the JPEG quality key to be used to generate the image. TheFormatConfigvalue accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression. If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of theJPEGQualitykey will be set to 80.- Parameters:
formatConfig- The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. TheFormatConfigkey is theJPEGQuality, which indicates the JPEG quality key to be used to generate the image. TheFormatConfigvalue accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression. If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of theJPEGQualitykey will be set to 80.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
formatConfig
ImageGenerationConfiguration.Builder formatConfig(Map<FormatConfigKey,String> formatConfig)
The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. The
FormatConfigkey is theJPEGQuality, which indicates the JPEG quality key to be used to generate the image. TheFormatConfigvalue accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression. If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of theJPEGQualitykey will be set to 80.- Parameters:
formatConfig- The list of a key-value pair structure that contains extra parameters that can be applied when the image is generated. TheFormatConfigkey is theJPEGQuality, which indicates the JPEG quality key to be used to generate the image. TheFormatConfigvalue accepts ints from 1 to 100. If the value is 1, the image will be generated with less quality and the best compression. If the value is 100, the image will be generated with the best quality and less compression. If no value is provided, the default value of theJPEGQualitykey will be set to 80.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
widthPixels
ImageGenerationConfiguration.Builder widthPixels(Integer widthPixels)
The width of the output image that is used in conjunction with the
HeightPixelsparameter. When bothWidthPixelsandHeightPixelsparameters are provided, the image will be stretched to fit the specified aspect ratio. If only theWidthPixelsparameter is provided, its original aspect ratio will be used to calculate theHeightPixelsratio. If neither parameter is provided, the original image size will be returned.- Parameters:
widthPixels- The width of the output image that is used in conjunction with theHeightPixelsparameter. When bothWidthPixelsandHeightPixelsparameters are provided, the image will be stretched to fit the specified aspect ratio. If only theWidthPixelsparameter is provided, its original aspect ratio will be used to calculate theHeightPixelsratio. If neither parameter is provided, the original image size will be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
heightPixels
ImageGenerationConfiguration.Builder heightPixels(Integer heightPixels)
The height of the output image that is used in conjunction with the
WidthPixelsparameter. When bothHeightPixelsandWidthPixelsparameters are provided, the image will be stretched to fit the specified aspect ratio. If only theHeightPixelsparameter is provided, its original aspect ratio will be used to calculate theWidthPixelsratio. If neither parameter is provided, the original image size will be returned.- Parameters:
heightPixels- The height of the output image that is used in conjunction with theWidthPixelsparameter. When bothHeightPixelsandWidthPixelsparameters are provided, the image will be stretched to fit the specified aspect ratio. If only theHeightPixelsparameter is provided, its original aspect ratio will be used to calculate theWidthPixelsratio. If neither parameter is provided, the original image size will be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-