CreateInstanceProfileRequest
public struct CreateInstanceProfileRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The description of your instance profile.
Declaration
Swift
public let description: String?
-
An array of strings that specifies the list of app packages that should not be cleaned up from the device after a test run. The list of packages is considered only if you set packageCleanup to true.
Declaration
Swift
public let excludeAppPackagesFromCleanup: [String]?
-
The name of your 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(description: String? = nil, excludeAppPackagesFromCleanup: [String]? = nil, name: String, packageCleanup: Bool? = nil, rebootAfterUse: Bool? = nil)
-
Declaration
Swift
public func validate(name: String) throws