CreateProvisioningTemplateRequest
public struct CreateProvisioningTemplateRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The description of the fleet provisioning template.
Declaration
Swift
public let description: String?
-
True to enable the fleet provisioning template, otherwise false.
Declaration
Swift
public let enabled: Bool?
-
Creates a pre-provisioning hook template.
Declaration
Swift
public let preProvisioningHook: ProvisioningHook?
-
The role ARN for the role associated with the fleet provisioning template. This IoT role grants permission to provision a device.
Declaration
Swift
public let provisioningRoleArn: String
-
Metadata which can be used to manage the fleet provisioning template. For URI Request parameters use format: …key1=value1&key2=value2… For the CLI command-line parameter use format: &&tags “key1=value1&key2=value2…” For the cli-input-json file use format: “tags”: “key1=value1&key2=value2…”
Declaration
Swift
public let tags: [Tag]?
-
The JSON formatted contents of the fleet provisioning template.
Declaration
Swift
public let templateBody: String
-
The name of the fleet provisioning template.
Declaration
Swift
public let templateName: String
-
Undocumented
Declaration
Swift
public init(description: String? = nil, enabled: Bool? = nil, preProvisioningHook: ProvisioningHook? = nil, provisioningRoleArn: String, tags: [Tag]? = nil, templateBody: String, templateName: String)
-
Declaration
Swift
public func validate(name: String) throws