Show / Hide Table of Contents

Class ActionBindOptions

Inheritance
object
ActionBindOptions
Implements
IActionBindOptions
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ActionBindOptions : IActionBindOptions
Syntax (vb)
Public Class ActionBindOptions Implements 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

Constructors

ActionBindOptions()

Properties

Bucket
Role

Constructors

ActionBindOptions()

public ActionBindOptions()
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
            };

Properties

Bucket

public IBucket Bucket { get; set; }
Property Value

IBucket

Remarks

ExampleMetadata: fixture=_generated

Role

public IRole Role { get; set; }
Property Value

IRole

Remarks

ExampleMetadata: fixture=_generated

Implements

IActionBindOptions
Back to top Generated by DocFX