Show / Hide Table of Contents

Interface IActionBindOptions

Namespace: Amazon.CDK.AWS.CodePipeline
Assembly: Amazon.CDK.AWS.CodePipeline.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;

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

Synopsis

Properties

Bucket
Role

Properties

Bucket

IBucket Bucket { get; }
Property Value

IBucket

Role

IRole Role { get; }
Property Value

IRole

Back to top Generated by DocFX