Class CustomResourceReference
A reference to a CustomResource resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.CloudFormation
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CustomResourceReference : ICustomResourceReference
Syntax (vb)
Public Class CustomResourceReference Implements ICustomResourceReference
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.CloudFormation;
var customResourceReference = new CustomResourceReference {
CustomResourceId = "customResourceId"
};
Synopsis
Constructors
CustomResourceReference() | A reference to a CustomResource resource. |
Properties
CustomResourceId | The Id of the CustomResource resource. |
Constructors
CustomResourceReference()
A reference to a CustomResource resource.
public CustomResourceReference()
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.CloudFormation;
var customResourceReference = new CustomResourceReference {
CustomResourceId = "customResourceId"
};
Properties
CustomResourceId
The Id of the CustomResource resource.
public string CustomResourceId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated