AWSIoTCreateProvisioningTemplateRequest

Objective-C

@interface AWSIoTCreateProvisioningTemplateRequest

Swift

class AWSIoTCreateProvisioningTemplateRequest
  • The description of the provisioning template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable detail;

    Swift

    var detail: String? { get set }
  • True to enable the provisioning template, otherwise false.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable enabled;

    Swift

    var enabled: NSNumber? { get set }
  • Creates a pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSIoTProvisioningHook *_Nullable preProvisioningHook;

    Swift

    var preProvisioningHook: AWSIoTProvisioningHook? { get set }
  • The role ARN for the role associated with the provisioning template. This IoT role grants permission to provision a device.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable provisioningRoleArn;

    Swift

    var provisioningRoleArn: String? { get set }
  • Metadata which can be used to manage the 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

    Objective-C

    @property (nonatomic, strong) NSArray<AWSIoTTag *> *_Nullable tags;

    Swift

    var tags: [AWSIoTTag]? { get set }
  • The JSON formatted contents of the provisioning template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateBody;

    Swift

    var templateBody: String? { get set }
  • The name of the provisioning template.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateName;

    Swift

    var templateName: String? { get set }
  • The type you define in a provisioning template. You can create a template with only one type. You can’t change the template type after its creation. The default value is FLEET_PROVISIONING. For more information about provisioning template, see: Provisioning template.

    Declaration

    Objective-C

    @property (nonatomic) AWSIoTTemplateType types;

    Swift

    var types: AWSIoTTemplateType { get set }