SourceRevision
- class aws_cdk.aws_codepipeline_actions.SourceRevision(*, action_name, revision_type, revision_value)
- Bases: - object- A list that allows you to specify, or override, the source revision for a pipeline execution that’s being started. - Parameters:
- action_name ( - str) – The name of the action where the override will be applied.
- revision_type ( - RevisionType) – The type of source revision, based on the source provider.
- revision_value ( - str) – The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.
 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_codepipeline_actions as codepipeline_actions source_revision = codepipeline_actions.SourceRevision( action_name="actionName", revision_type=codepipeline_actions.RevisionType.COMMIT_ID, revision_value="revisionValue" ) - Attributes - action_name
- The name of the action where the override will be applied. 
 - revision_type
- The type of source revision, based on the source provider. 
 - revision_value
- The source revision, or version of your source artifact, with the changes that you want to run in the pipeline execution.