interface ServiceProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.AppRunner.Alpha.ServiceProps |
![]() | github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#ServiceProps |
![]() | software.amazon.awscdk.services.apprunner.alpha.ServiceProps |
![]() | aws_cdk.aws_apprunner_alpha.ServiceProps |
![]() | @aws-cdk/aws-apprunner-alpha ยป ServiceProps |
Properties of the AppRunner Service.
Example
new apprunner.Service(this, 'Service', {
source: apprunner.Source.fromGitHub({
repositoryUrl: 'https://github.com/aws-containers/hello-app-runner',
branch: 'main',
configurationSource: apprunner.ConfigurationSourceType.API,
codeConfigurationValues: {
runtime: apprunner.Runtime.PYTHON_3,
port: '8000',
startCommand: 'python app.py',
buildCommand: 'yum install -y pycairo && pip install -r requirements.txt',
},
connection: apprunner.GitHubConnection.fromConnectionArn('CONNECTION_ARN'),
}),
});
Properties
Name | Type | Description |
---|---|---|
source | Source | The source of the repository for the service. |
access | IRole | The IAM role that grants the App Runner service access to a source repository. |
auto | boolean | Specifies whether to enable continuous integration from the source repository. |
cpu? | Cpu | The number of CPU units reserved for each instance of your App Runner service. |
instance | IRole | The IAM role that provides permissions to your App Runner service. |
memory? | Memory | The amount of memory reserved for each instance of your App Runner service. |
service | string | Name of the service. |
vpc | IVpc | Settings for an App Runner VPC connector to associate with the service. |
source
Type:
Source
The source of the repository for the service.
accessRole?
Type:
IRole
(optional, default: generate a new access role.)
The IAM role that grants the App Runner service access to a source repository.
It's required for ECR image repositories (but not for ECR Public repositories).
The role must be assumable by the 'build.apprunner.amazonaws.com' service principal.
autoDeploymentsEnabled?
Type:
boolean
(optional, default: no value will be passed.)
Specifies whether to enable continuous integration from the source repository.
If true, continuous integration from the source repository is enabled for the App Runner service. Each repository change (including any source code commit or new image version) starts a deployment. By default, App Runner sets to false for a source image that uses an ECR Public repository or an ECR repository that's in an AWS account other than the one that the service is in. App Runner sets to true in all other cases (which currently include a source code repository or a source image using a same-account ECR repository).
cpu?
Type:
Cpu
(optional, default: Cpu.ONE_VCPU)
The number of CPU units reserved for each instance of your App Runner service.
instanceRole?
Type:
IRole
(optional, default: no instance role attached.)
The IAM role that provides permissions to your App Runner service.
These are permissions that your code needs when it calls any AWS APIs.
The role must be assumable by the 'tasks.apprunner.amazonaws.com' service principal.
memory?
Type:
Memory
(optional, default: Memory.TWO_GB)
The amount of memory reserved for each instance of your App Runner service.
serviceName?
Type:
string
(optional, default: auto-generated if undefined.)
Name of the service.
vpcConnector?
Type:
IVpc
(optional, default: no VPC connector, uses the DEFAULT egress type instead)
Settings for an App Runner VPC connector to associate with the service.