Show / Hide Table of Contents

Interface IActionBindOptions

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IActionBindOptions
Syntax (vb)
Public Interface IActionBindOptions
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline;
            using Amazon.CDK.AWS.IAM;
            using Amazon.CDK.AWS.S3;

            Bucket bucket;
            Role role;

            var actionBindOptions = new ActionBindOptions {
                Bucket = bucket,
                Role = role
            };

Synopsis

Properties

Bucket
Role

Properties

Bucket

IBucket Bucket { get; }
Property Value

IBucket

Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline;
            using Amazon.CDK.AWS.IAM;
            using Amazon.CDK.AWS.S3;

            Bucket bucket;
            Role role;

            var actionBindOptions = new ActionBindOptions {
                Bucket = bucket,
                Role = role
            };

Role

IRole Role { get; }
Property Value

IRole

Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.CodePipeline;
            using Amazon.CDK.AWS.IAM;
            using Amazon.CDK.AWS.S3;

            Bucket bucket;
            Role role;

            var actionBindOptions = new ActionBindOptions {
                Bucket = bucket,
                Role = role
            };
Back to top Generated by DocFX