Class: Aws::AppRunner::Types::SourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppRunner::Types::SourceConfiguration
- Defined in:
- gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb
Overview
Describes the source deployed to an App Runner service. It can be a code or an image repository.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#authentication_configuration ⇒ Types::AuthenticationConfiguration
Describes the resources that are needed to authenticate access to some source repositories.
-
#auto_deployments_enabled ⇒ Boolean
If
true
, continuous integration from the source repository is enabled for the App Runner service. -
#code_repository ⇒ Types::CodeRepository
The description of a source code repository.
-
#image_repository ⇒ Types::ImageRepository
The description of a source image repository.
Instance Attribute Details
#authentication_configuration ⇒ Types::AuthenticationConfiguration
Describes the resources that are needed to authenticate access to some source repositories.
2745 2746 2747 2748 2749 2750 2751 2752 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2745 class SourceConfiguration < Struct.new( :code_repository, :image_repository, :auto_deployments_enabled, :authentication_configuration) SENSITIVE = [] include Aws::Structure end |
#auto_deployments_enabled ⇒ Boolean
If true
, continuous integration from the source repository is
enabled for the App Runner service. Each repository change
(including any source code commit or new image version) starts a
deployment.
Default: App Runner sets to false
for a source image that uses an
ECR Public repository or an ECR repository that's in an Amazon Web
Services account other than the one that the service is in. App
Runner sets to true
in all other cases (which currently include a
source code repository or a source image using a same-account ECR
repository).
2745 2746 2747 2748 2749 2750 2751 2752 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2745 class SourceConfiguration < Struct.new( :code_repository, :image_repository, :auto_deployments_enabled, :authentication_configuration) SENSITIVE = [] include Aws::Structure end |
#code_repository ⇒ Types::CodeRepository
The description of a source code repository.
You must provide either this member or ImageRepository
(but not
both).
2745 2746 2747 2748 2749 2750 2751 2752 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2745 class SourceConfiguration < Struct.new( :code_repository, :image_repository, :auto_deployments_enabled, :authentication_configuration) SENSITIVE = [] include Aws::Structure end |
#image_repository ⇒ Types::ImageRepository
The description of a source image repository.
You must provide either this member or CodeRepository
(but not
both).
2745 2746 2747 2748 2749 2750 2751 2752 |
# File 'gems/aws-sdk-apprunner/lib/aws-sdk-apprunner/types.rb', line 2745 class SourceConfiguration < Struct.new( :code_repository, :image_repository, :auto_deployments_enabled, :authentication_configuration) SENSITIVE = [] include Aws::Structure end |