Class CfnCoreDefinitionVersion

java.lang.Object
software.amazon.jsii.JsiiObject
All Implemented Interfaces:
IConstruct, IDependable, IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:56.955Z") @Stability(Stable) public class CfnCoreDefinitionVersion extends CfnResource implements IInspectable
A CloudFormation AWS::Greengrass::CoreDefinitionVersion.

The AWS::Greengrass::CoreDefinitionVersion resource represents a core definition version for AWS IoT Greengrass . A core definition version contains a Greengrass core.

To create a core definition version, you must specify the ID of the core definition that you want to associate with the version. For information about creating a core definition, see AWS::Greengrass::CoreDefinition .

After you create a core definition version that contains the core you want to deploy, you must add it to your group version. For more information, see AWS::Greengrass::Group .

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.greengrass.*;
 CfnCoreDefinitionVersion cfnCoreDefinitionVersion = CfnCoreDefinitionVersion.Builder.create(this, "MyCfnCoreDefinitionVersion")
         .coreDefinitionId("coreDefinitionId")
         .cores(List.of(CoreProperty.builder()
                 .certificateArn("certificateArn")
                 .id("id")
                 .thingArn("thingArn")
                 // the properties below are optional
                 .syncShadow(false)
                 .build()))
         .build();
 
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnCoreDefinitionVersion

      protected CfnCoreDefinitionVersion(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnCoreDefinitionVersion

      protected CfnCoreDefinitionVersion(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnCoreDefinitionVersion

      @Stability(Stable) public CfnCoreDefinitionVersion(@NotNull Construct scope, @NotNull String id, @NotNull CfnCoreDefinitionVersionProps props)
      Create a new AWS::Greengrass::CoreDefinitionVersion.

      Parameters:
      scope -
      • scope in which this resource is defined.
      This parameter is required.
      id -
      • scoped id of the resource.
      This parameter is required.
      props -
      • resource properties.
      This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector -
      • tree inspector to collect and process attributes.
      This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCoreDefinitionId

      @Stability(Stable) @NotNull public String getCoreDefinitionId()
      The ID of the core definition associated with this version.

      This value is a GUID.

    • setCoreDefinitionId

      @Stability(Stable) public void setCoreDefinitionId(@NotNull String value)
      The ID of the core definition associated with this version.

      This value is a GUID.

    • getCores

      @Stability(Stable) @NotNull public Object getCores()
      The Greengrass core in this version.

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

    • setCores

      @Stability(Stable) public void setCores(@NotNull IResolvable value)
      The Greengrass core in this version.

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

    • setCores

      @Stability(Stable) public void setCores(@NotNull List<Object> value)
      The Greengrass core in this version.

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