SourceCodeVersion

class aws_cdk.aws_apprunner.SourceCodeVersion(*, type, value)

Bases: object

(experimental) Identifies a version of code that AWS App Runner refers to within a source code repository.

Parameters:
  • type (str) – (experimental) The type of version identifier.

  • value (str) – (experimental) A source code version.

See:

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-sourcecodeversion.html

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_apprunner as apprunner

source_code_version = apprunner.SourceCodeVersion(
    type="type",
    value="value"
)

Attributes

type

(experimental) The type of version identifier.

Stability:

experimental

value

(experimental) A source code version.

Stability:

experimental