ActionBindOptions
- class aws_cdk.aws_codepipeline.ActionBindOptions(*, bucket, role)
Bases:
object
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 from aws_cdk import aws_iam as iam from aws_cdk import aws_s3 as s3 # bucket: s3.Bucket # role: iam.Role action_bind_options = codepipeline.ActionBindOptions( bucket=bucket, role=role )
Attributes
- bucket
- role