Interface CfnServicePropsMixin.AuthenticationConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServicePropsMixin.AuthenticationConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnServicePropsMixin
@Stability(Stable)
public static interface CfnServicePropsMixin.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.cfnpropertymixins.services.apprunner.*;
AuthenticationConfigurationProperty authenticationConfigurationProperty = AuthenticationConfigurationProperty.builder()
.accessRoleArn("accessRoleArn")
.connectionArn("connectionArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServicePropsMixin.AuthenticationConfigurationPropertystatic final classAn implementation forCfnServicePropsMixin.AuthenticationConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe 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).
- 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
@Stability(Stable) static CfnServicePropsMixin.AuthenticationConfigurationProperty.Builder builder()
-