CustomActionTypeReference

class aws_cdk.aws_codepipeline.CustomActionTypeReference(*, category, provider, version)

Bases: object

A reference to a CustomActionType resource.

Parameters:
  • category (str) – The Category of the CustomActionType resource.

  • provider (str) – The Provider of the CustomActionType resource.

  • version (str) – The Version of the CustomActionType resource.

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 as codepipeline

custom_action_type_reference = codepipeline.CustomActionTypeReference(
    category="category",
    provider="provider",
    version="version"
)

Attributes

category

The Category of the CustomActionType resource.

provider

The Provider of the CustomActionType resource.

version

The Version of the CustomActionType resource.