Interface TargetContainerRepository.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TargetContainerRepository.Builder,TargetContainerRepository>,SdkBuilder<TargetContainerRepository.Builder,TargetContainerRepository>,SdkPojo
- Enclosing class:
- TargetContainerRepository
public static interface TargetContainerRepository.Builder extends SdkPojo, CopyableBuilder<TargetContainerRepository.Builder,TargetContainerRepository>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TargetContainerRepository.BuilderrepositoryName(String repositoryName)The name of the container repository where the output container image is stored.TargetContainerRepository.Builderservice(String service)Specifies the service in which this image was registered.TargetContainerRepository.Builderservice(ContainerRepositoryService service)Specifies the service in which this image was registered.-
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
-
service
TargetContainerRepository.Builder service(String service)
Specifies the service in which this image was registered.
- Parameters:
service- Specifies the service in which this image was registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerRepositoryService,ContainerRepositoryService
-
service
TargetContainerRepository.Builder service(ContainerRepositoryService service)
Specifies the service in which this image was registered.
- Parameters:
service- Specifies the service in which this image was registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ContainerRepositoryService,ContainerRepositoryService
-
repositoryName
TargetContainerRepository.Builder repositoryName(String repositoryName)
The name of the container repository where the output container image is stored. This name is prefixed by the repository location.
- Parameters:
repositoryName- The name of the container repository where the output container image is stored. This name is prefixed by the repository location.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-