Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateSystemInstanceRequest

import type { CreateSystemInstanceRequest } from "https://aws-api.deno.dev/v0.4/services/iotthingsgraph.ts?docs=full";
interface CreateSystemInstanceRequest {
definition: DefinitionDocument;
flowActionsRoleArn?: string | null;
greengrassGroupName?: string | null;
metricsConfiguration?: MetricsConfiguration | null;
s3BucketName?: string | null;
tags?: Tag[] | null;
}

§Properties

§
flowActionsRoleArn?: string | null
[src]

The ARN of the IAM role that AWS IoT Things Graph will assume when it executes the flow. This role must have read and write access to AWS Lambda and AWS IoT and any other AWS services that the flow uses when it executes. This value is required if the value of the target parameter is CLOUD.

§
greengrassGroupName?: string | null
[src]

The name of the Greengrass group where the system instance will be deployed. This value is required if the value of the target parameter is GREENGRASS.

§
metricsConfiguration?: MetricsConfiguration | null
[src]
§
s3BucketName?: string | null
[src]

The name of the Amazon Simple Storage Service bucket that will be used to store and deploy the system instance's resource file. This value is required if the value of the target parameter is GREENGRASS.

§
tags?: Tag[] | null
[src]

Metadata, consisting of key-value pairs, that can be used to categorize your system instances.

§

The target type of the deployment. Valid values are GREENGRASS and CLOUD.