Show / Hide Table of Contents

Class CfnCoreDefinitionVersionMixinProps

Properties for CfnCoreDefinitionVersionPropsMixin.

Inheritance
object
CfnCoreDefinitionVersionMixinProps
Implements
ICfnCoreDefinitionVersionMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html

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

string

Remarks

This value is a GUID.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-coredefinitionid

Cores

The Greengrass core in this version.

public object? Cores { get; set; }
Property Value

object

Remarks

Currently, the Cores property for a core definition version can contain only one core.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-greengrass-coredefinitionversion.html#cfn-greengrass-coredefinitionversion-cores

Type union: either IResolvable or (either IResolvable or CfnCoreDefinitionVersionPropsMixin.ICoreProperty)[]

Implements

ICfnCoreDefinitionVersionMixinProps
Back to top Generated by DocFX