Show / Hide Table of Contents

Interface IRepositoryImageProps

The properties for an image hosted in a public or private repository.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface IRepositoryImageProps
Syntax (vb)
Public Interface IRepositoryImageProps
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;
using Amazon.CDK.AWS.SecretsManager;

Secret secret;

var repositoryImageProps = new RepositoryImageProps {
    Credentials = secret
};

Synopsis

Properties

Credentials

The secret to expose to the container that contains the credentials for the image repository.

Properties

Credentials

The secret to expose to the container that contains the credentials for the image repository.

virtual ISecret Credentials { get; }
Property Value

ISecret

Remarks

The supported value is the full ARN of an AWS Secrets Manager secret.

Back to top Generated by DocFX