Class CfnCoreDefinitionVersionMixinProps
Properties for CfnCoreDefinitionVersionPropsMixin.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.Greengrass.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnCoreDefinitionVersionMixinProps : ICfnCoreDefinitionVersionMixinProps
Syntax (vb)
Public Class CfnCoreDefinitionVersionMixinProps Implements ICfnCoreDefinitionVersionMixinProps
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.Mixins.Preview.AWS.Greengrass.Mixins;
var cfnCoreDefinitionVersionMixinProps = new CfnCoreDefinitionVersionMixinProps {
CoreDefinitionId = "coreDefinitionId",
Cores = new [] { new CoreProperty {
CertificateArn = "certificateArn",
Id = "id",
SyncShadow = false,
ThingArn = "thingArn"
} }
};
Synopsis
Constructors
| CfnCoreDefinitionVersionMixinProps() | Properties for CfnCoreDefinitionVersionPropsMixin. |
Properties
| CoreDefinitionId | The ID of the core definition associated with this version. |
| Cores | The Greengrass core in this version. |
Constructors
CfnCoreDefinitionVersionMixinProps()
Properties for CfnCoreDefinitionVersionPropsMixin.
public CfnCoreDefinitionVersionMixinProps()
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.Mixins.Preview.AWS.Greengrass.Mixins;
var cfnCoreDefinitionVersionMixinProps = new CfnCoreDefinitionVersionMixinProps {
CoreDefinitionId = "coreDefinitionId",
Cores = new [] { new CoreProperty {
CertificateArn = "certificateArn",
Id = "id",
SyncShadow = false,
ThingArn = "thingArn"
} }
};
Properties
CoreDefinitionId
The ID of the core definition associated with this version.
public string? CoreDefinitionId { get; set; }
Property Value
Remarks
Cores
The Greengrass core in this version.
public object? Cores { get; set; }
Property Value
Remarks
Currently, the Cores property for a core definition version can contain only one core.
Type union: either IResolvable or (either IResolvable or CfnCoreDefinitionVersionPropsMixin.ICoreProperty)[]