Interface CfnService.AuthenticationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnService.AuthenticationConfigurationProperty.Jsii$Proxy
- Enclosing class:
- CfnService
@Stability(Stable)
public static interface CfnService.AuthenticationConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.apprunner.*;
AuthenticationConfigurationProperty authenticationConfigurationProperty = AuthenticationConfigurationProperty.builder()
.accessRoleArn("accessRoleArn")
.connectionArn("connectionArn")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnService.AuthenticationConfigurationPropertystatic final classAn implementation forCfnService.AuthenticationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository.default StringThe Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessRoleArn
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).
-
getConnectionArn
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.
-
builder
-