InstanceProfile

public struct InstanceProfile : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • arn

    The Amazon Resource Name (ARN) of the instance profile.

    Declaration

    Swift

    public let arn: String?
  • The description of the instance profile.

    Declaration

    Swift

    public let description: String?
  • An array of strings containing the list of app packages that should not be cleaned up from the device after a test run completes. The list of packages is considered only if you set packageCleanup to true.

    Declaration

    Swift

    public let excludeAppPackagesFromCleanup: [String]?
  • The name of the instance profile.

    Declaration

    Swift

    public let name: String?
  • When set to true, Device Farm removes app packages after a test run. The default value is false for private devices.

    Declaration

    Swift

    public let packageCleanup: Bool?
  • When set to true, Device Farm reboots the instance after a test run. The default value is true.

    Declaration

    Swift

    public let rebootAfterUse: Bool?
  • Undocumented

    Declaration

    Swift

    public init(arn: String? = nil, description: String? = nil, excludeAppPackagesFromCleanup: [String]? = nil, name: String? = nil, packageCleanup: Bool? = nil, rebootAfterUse: Bool? = nil)