Class CfnDynamicReferenceProps
Properties for a Dynamic Reference.
Implements
Inherited Members
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDynamicReferenceProps : ICfnDynamicReferenceProps
Syntax (vb)
Public Class CfnDynamicReferenceProps Implements ICfnDynamicReferenceProps
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;
var cfnDynamicReferenceProps = new CfnDynamicReferenceProps {
ReferenceKey = "referenceKey",
Service = CfnDynamicReferenceService.SSM
};
Synopsis
Constructors
| CfnDynamicReferenceProps() | Properties for a Dynamic Reference. |
Properties
| ReferenceKey | The reference key of the dynamic reference. |
| Service | The service to retrieve the dynamic reference from. |
Constructors
CfnDynamicReferenceProps()
Properties for a Dynamic Reference.
public CfnDynamicReferenceProps()
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;
var cfnDynamicReferenceProps = new CfnDynamicReferenceProps {
ReferenceKey = "referenceKey",
Service = CfnDynamicReferenceService.SSM
};
Properties
ReferenceKey
The reference key of the dynamic reference.
public string ReferenceKey { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
Service
The service to retrieve the dynamic reference from.
public CfnDynamicReferenceService Service { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated