Show / Hide Table of Contents

Class CfnTaskDefinition.RepositoryCredentialsProperty

The repository credentials for private registry authentication.

Inheritance
object
CfnTaskDefinition.RepositoryCredentialsProperty
Implements
CfnTaskDefinition.IRepositoryCredentialsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTaskDefinition.RepositoryCredentialsProperty : CfnTaskDefinition.IRepositoryCredentialsProperty
Syntax (vb)
Public Class CfnTaskDefinition.RepositoryCredentialsProperty Implements CfnTaskDefinition.IRepositoryCredentialsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-repositorycredentials.html

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;

             var repositoryCredentialsProperty = new RepositoryCredentialsProperty {
                 CredentialsParameter = "credentialsParameter"
             };

Synopsis

Constructors

RepositoryCredentialsProperty()

The repository credentials for private registry authentication.

Properties

CredentialsParameter

The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

Constructors

RepositoryCredentialsProperty()

The repository credentials for private registry authentication.

public RepositoryCredentialsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-repositorycredentials.html

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;

             var repositoryCredentialsProperty = new RepositoryCredentialsProperty {
                 CredentialsParameter = "credentialsParameter"
             };

Properties

CredentialsParameter

The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

public string? CredentialsParameter { get; set; }
Property Value

string

Remarks
When you use the Amazon ECS API, AWS CLI , or AWS SDK, if the secret exists in the same Region as the task that you're launching then you can use either the full ARN or the name of the secret. When you use the AWS Management Console, you must specify the full ARN of the secret.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-repositorycredentials.html#cfn-ecs-taskdefinition-repositorycredentials-credentialsparameter

Implements

CfnTaskDefinition.IRepositoryCredentialsProperty
Back to top Generated by DocFX