class EcrSource
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.Alpha.EcrSource |
Go | github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#EcrSource |
Java | software.amazon.awscdk.services.apprunner.alpha.EcrSource |
Python | aws_cdk.aws_apprunner_alpha.EcrSource |
TypeScript (source) | @aws-cdk/aws-apprunner-alpha » EcrSource |
Extends
Source
Represents the service source from ECR.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as apprunner_alpha from '@aws-cdk/aws-apprunner-alpha';
import { aws_ecr as ecr } from 'aws-cdk-lib';
declare const repository: ecr.Repository;
declare const secret: apprunner_alpha.Secret;
const ecrSource = new apprunner_alpha.EcrSource({
repository: repository,
// the properties below are optional
imageConfiguration: {
environment: {
environmentKey: 'environment',
},
environmentSecrets: {
environmentSecretsKey: secret,
},
environmentVariables: {
environmentVariablesKey: 'environmentVariables',
},
port: 123,
startCommand: 'startCommand',
},
tag: 'tag',
tagOrDigest: 'tagOrDigest',
});
Initializer
new EcrSource(props: EcrProps)
Parameters
- props
Ecr
Props
Methods
Name | Description |
---|---|
bind(_scope) | Called when the Job is initialized to allow this object to bind. |
bind(_scope)
public bind(_scope: Construct): SourceConfig
Parameters
- _scope
Construct
Returns
Called when the Job is initialized to allow this object to bind.