Class CoreDefinitionReference
A reference to a CoreDefinition resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.Greengrass
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CoreDefinitionReference : ICoreDefinitionReference
Syntax (vb)
Public Class CoreDefinitionReference Implements ICoreDefinitionReference
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.Interfaces.Greengrass;
var coreDefinitionReference = new CoreDefinitionReference {
CoreDefinitionArn = "coreDefinitionArn",
CoreDefinitionId = "coreDefinitionId"
};
Synopsis
Constructors
| CoreDefinitionReference() | A reference to a CoreDefinition resource. |
Properties
| CoreDefinitionArn | The ARN of the CoreDefinition resource. |
| CoreDefinitionId | The Id of the CoreDefinition resource. |
Constructors
CoreDefinitionReference()
A reference to a CoreDefinition resource.
public CoreDefinitionReference()
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.Interfaces.Greengrass;
var coreDefinitionReference = new CoreDefinitionReference {
CoreDefinitionArn = "coreDefinitionArn",
CoreDefinitionId = "coreDefinitionId"
};
Properties
CoreDefinitionArn
The ARN of the CoreDefinition resource.
public string CoreDefinitionArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
CoreDefinitionId
The Id of the CoreDefinition resource.
public string CoreDefinitionId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated