CreateSystemInstanceRequest
public struct CreateSystemInstanceRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Undocumented
Declaration
Swift
public let definition: DefinitionDocument
-
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.
Declaration
Swift
public let flowActionsRoleArn: String?
-
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.
Declaration
Swift
public let greengrassGroupName: String?
-
Undocumented
Declaration
Swift
public let metricsConfiguration: MetricsConfiguration?
-
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.
Declaration
Swift
public let s3BucketName: String?
-
Metadata, consisting of key-value pairs, that can be used to categorize your system instances.
Declaration
Swift
public let tags: [Tag]?
-
The target type of the deployment. Valid values are GREENGRASS and CLOUD.
Declaration
Swift
public let target: DeploymentTarget
-
init(definition:flowActionsRoleArn:greengrassGroupName:metricsConfiguration:s3BucketName:tags:target:)
Undocumented
Declaration
Swift
public init(definition: DefinitionDocument, flowActionsRoleArn: String? = nil, greengrassGroupName: String? = nil, metricsConfiguration: MetricsConfiguration? = nil, s3BucketName: String? = nil, tags: [Tag]? = nil, target: DeploymentTarget)
-
Declaration
Swift
public func validate(name: String) throws