Interface ImageConfiguration.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ImageConfiguration.Builder,,ImageConfiguration> SdkBuilder<ImageConfiguration.Builder,,ImageConfiguration> SdkPojo
- Enclosing class:
ImageConfiguration
@Mutable
@NotThreadSafe
public static interface ImageConfiguration.Builder
extends SdkPojo, CopyableBuilder<ImageConfiguration.Builder,ImageConfiguration>
-
Method Summary
Modifier and TypeMethodDescriptionapplicationLevelDigestResolution(Boolean applicationLevelDigestResolution) Boolean value indicating if the digest resolution is application level or workload level.The image URI.resolvedImageDigest(String resolvedImageDigest) The SHA256 digest of the image URI.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
imageUri
The image URI.
- Parameters:
imageUri- The image URI.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
resolvedImageDigest
The SHA256 digest of the image URI. This indicates which specific image the application is configured for. The image digest doesn't exist until an application has started.
- Parameters:
resolvedImageDigest- The SHA256 digest of the image URI. This indicates which specific image the application is configured for. The image digest doesn't exist until an application has started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationLevelDigestResolution
ImageConfiguration.Builder applicationLevelDigestResolution(Boolean applicationLevelDigestResolution) Boolean value indicating if the digest resolution is application level or workload level. If true, a custom image URI is resolved at application start time and all workloads submitted will use that image digest. If false, the custom image URI is resolved at the workload submission time.
- Parameters:
applicationLevelDigestResolution- Boolean value indicating if the digest resolution is application level or workload level. If true, a custom image URI is resolved at application start time and all workloads submitted will use that image digest. If false, the custom image URI is resolved at the workload submission time.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-