ActionBindOptions

class aws_cdk.aws_codepipeline.ActionBindOptions(*, bucket, role)

Bases: object

Parameters:
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_codepipeline as codepipeline
import aws_cdk.aws_iam as iam
import aws_cdk.aws_s3 as s3

# bucket: s3.Bucket
# role: iam.Role

action_bind_options = codepipeline.ActionBindOptions(
    bucket=bucket,
    role=role
)

Attributes

bucket
role