interface AuthenticationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.AuthenticationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_AuthenticationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.AuthenticationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.AuthenticationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnServicePropsMixin » AuthenticationConfigurationProperty |
Describes resources needed to authenticate access to some source repositories.
The specific resource depends on the repository provider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const authenticationConfigurationProperty: apprunner_mixins.CfnServicePropsMixin.AuthenticationConfigurationProperty = {
accessRoleArn: 'accessRoleArn',
connectionArn: 'connectionArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository. |
| connection | string | The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository. |
accessRoleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of 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).
connectionArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository.
It's required for GitHub code repositories.

.NET
Go
Java
Python
TypeScript