AWSIoTDescribeProvisioningTemplateResponse

Objective-C

@interface AWSIoTDescribeProvisioningTemplateResponse

Swift

class AWSIoTDescribeProvisioningTemplateResponse
  • The date when the provisioning template was created.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable creationDate;

    Swift

    var creationDate: Date? { get set }
  • The default fleet template version ID.

    Declaration

    Objective-C

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

    Swift

    var defaultVersionId: NSNumber? { get set }
  • The description of the provisioning template.

    Declaration

    Objective-C

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

    Swift

    var detail: String? { get set }
  • True if the provisioning template is enabled, otherwise false.

    Declaration

    Objective-C

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

    Swift

    var enabled: NSNumber? { get set }
  • The date when the provisioning template was last modified.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable lastModifiedDate;

    Swift

    var lastModifiedDate: Date? { get set }
  • Gets information about a pre-provisioned hook.

    Declaration

    Objective-C

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

    Swift

    var preProvisioningHook: AWSIoTProvisioningHook? { get set }
  • The ARN of 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 }
  • The ARN of the provisioning template.

    Declaration

    Objective-C

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

    Swift

    var templateArn: String? { 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 }