@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.604Z") @Stability(value=Stable) public interface CfnCoreDefinitionVersionProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnCoreDefinitionVersionProps cfnCoreDefinitionVersionProps = CfnCoreDefinitionVersionProps.builder()
.coreDefinitionId("coreDefinitionId")
.cores(List.of(CoreProperty.builder()
.certificateArn("certificateArn")
.id("id")
.thingArn("thingArn")
// the properties below are optional
.syncShadow(false)
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCoreDefinitionVersionProps.Builder
A builder for
CfnCoreDefinitionVersionProps |
static class |
CfnCoreDefinitionVersionProps.Jsii$Proxy
An implementation for
CfnCoreDefinitionVersionProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnCoreDefinitionVersionProps.Builder |
builder() |
String |
getCoreDefinitionId()
The ID of the core definition associated with this version.
|
Object |
getCores()
The Greengrass core in this version.
|
@Stability(value=Stable) @NotNull String getCoreDefinitionId()
This value is a GUID.
@Stability(value=Stable) @NotNull Object getCores()
Currently, the Cores property for a core definition version can contain only one core.
@Stability(value=Stable) static CfnCoreDefinitionVersionProps.Builder builder()
Copyright © 2022. All rights reserved.