Class ActionBindOptions
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated