interface ExpressGatewayRepositoryCredentialsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ECS.CfnExpressGatewayService.ExpressGatewayRepositoryCredentialsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsecs#CfnExpressGatewayService_ExpressGatewayRepositoryCredentialsProperty |
Java | software.amazon.awscdk.services.ecs.CfnExpressGatewayService.ExpressGatewayRepositoryCredentialsProperty |
Python | aws_cdk.aws_ecs.CfnExpressGatewayService.ExpressGatewayRepositoryCredentialsProperty |
TypeScript | aws-cdk-lib » aws_ecs » CfnExpressGatewayService » ExpressGatewayRepositoryCredentialsProperty |
The repository credentials for private registry authentication to pass to the container.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from 'aws-cdk-lib';
const expressGatewayRepositoryCredentialsProperty: ecs.CfnExpressGatewayService.ExpressGatewayRepositoryCredentialsProperty = {
credentialsParameter: 'credentialsParameter',
};
Properties
| Name | Type | Description |
|---|---|---|
| credentials | string | The Amazon Resource Name (ARN) of the secret containing the private repository credentials. |
credentialsParameter
Type:
string
The Amazon Resource Name (ARN) of the secret containing the private repository credentials.

.NET
Go
Java
Python
TypeScript