DebugRuleConfiguration
public struct DebugRuleConfiguration : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The instance type to deploy for a training job.
Declaration
Swift
public let instanceType: ProcessingInstanceType?
-
Path to local storage location for output of rules. Defaults to /opt/ml/processing/output/rule/.
Declaration
Swift
public let localPath: String?
-
The name of the rule configuration. It must be unique relative to other rule configuration names.
Declaration
Swift
public let ruleConfigurationName: String
-
The Amazon Elastic Container (ECR) Image for the managed rule evaluation.
Declaration
Swift
public let ruleEvaluatorImage: String
-
Runtime configuration for rule container.
Declaration
Swift
public let ruleParameters: [String : String]?
-
Path to Amazon S3 storage location for rules.
Declaration
Swift
public let s3OutputPath: String?
-
The size, in GB, of the ML storage volume attached to the processing instance.
Declaration
Swift
public let volumeSizeInGB: Int?
-
init(instanceType:localPath:ruleConfigurationName:ruleEvaluatorImage:ruleParameters:s3OutputPath:volumeSizeInGB:)
Undocumented
Declaration
Swift
public init(instanceType: ProcessingInstanceType? = nil, localPath: String? = nil, ruleConfigurationName: String, ruleEvaluatorImage: String, ruleParameters: [String : String]? = nil, s3OutputPath: String? = nil, volumeSizeInGB: Int? = nil)
-
Declaration
Swift
public func validate(name: String) throws