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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnService.AuthenticationConfigurationProperty
static final class
An implementation forCfnService.AuthenticationConfigurationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository.default String
The 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).
- See Also:
-
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.
- See Also:
-
builder
-