Interface RepositoryImageProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RepositoryImageProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:47.433Z")
@Stability(Stable)
public interface RepositoryImageProps
extends software.amazon.jsii.JsiiSerializable
The properties for an image hosted in a public or private repository.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ecs.*; import software.amazon.awscdk.services.secretsmanager.*; Secret secret; RepositoryImageProps repositoryImageProps = RepositoryImageProps.builder() .credentials(secret) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forRepositoryImageProps
static final class
An implementation forRepositoryImageProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic RepositoryImageProps.Builder
builder()
default ISecret
The secret to expose to the container that contains the credentials for the image repository.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCredentials
The secret to expose to the container that contains the credentials for the image repository.The supported value is the full ARN of an AWS Secrets Manager secret.
-
builder
- Returns:
- a
RepositoryImageProps.Builder
ofRepositoryImageProps
-