@Stability(value=Stable)
public static interface CfnComponentVersion.ComponentPlatformProperty
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.greengrassv2.*;
ComponentPlatformProperty componentPlatformProperty = ComponentPlatformProperty.builder()
.attributes(Map.of(
"attributesKey", "attributes"))
.name("name")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnComponentVersion.ComponentPlatformProperty.Builder
A builder for
CfnComponentVersion.ComponentPlatformProperty |
static class |
CfnComponentVersion.ComponentPlatformProperty.Jsii$Proxy
An implementation for
CfnComponentVersion.ComponentPlatformProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnComponentVersion.ComponentPlatformProperty.Builder |
builder() |
default Object |
getAttributes()
A dictionary of attributes for the platform.
|
default String |
getName()
The friendly name of the platform.
|
@Stability(value=Stable) @Nullable default Object getAttributes()
The software defines the os and platform by default. You can specify additional platform attributes for a core device when you deploy the Greengrass nucleus component. For more information, see the Greengrass nucleus component in the AWS IoT Greengrass V2 Developer Guide .
@Stability(value=Stable) @Nullable default String getName()
If you omit this parameter, AWS IoT Greengrass creates a friendly name from the os and architecture of the platform.
@Stability(value=Stable) static CfnComponentVersion.ComponentPlatformProperty.Builder builder()
Copyright © 2022. All rights reserved.