Class: Aws::AppRunner::Types::AuthenticationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::AuthenticationConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#access_role_arn ⇒ String
The Amazon Resource Name (ARN) of the IAM role that grants the App Runner service access to a source repository.
-
#connection_arn ⇒ String
The Amazon Resource Name (ARN) of the App Runner connection that enables the App Runner service to connect to a source repository.
Instance Attribute Details
#access_role_arn ⇒ String
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).
89 90 91 92 93 94 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 89 class AuthenticationConfiguration < Struct.new( :connection_arn, :access_role_arn) SENSITIVE = [] include Aws::Structure end |
#connection_arn ⇒ String
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.
89 90 91 92 93 94 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 89 class AuthenticationConfiguration < Struct.new( :connection_arn, :access_role_arn) SENSITIVE = [] include Aws::Structure end |