ComplianceItemEntry

public struct ComplianceItemEntry : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A “Key”: “Value” tag combination for the compliance item.

    Declaration

    Swift

    public let details: [String : String]?
  • id

    The compliance item ID. For example, if the compliance item is a Windows patch, the ID could be the number of the KB article.

    Declaration

    Swift

    public let id: String?
  • The severity of the compliance status. Severity can be one of the following: Critical, High, Medium, Low, Informational, Unspecified.

    Declaration

    Swift

    public let severity: ComplianceSeverity
  • The status of the compliance item. An item is either COMPLIANT or NON_COMPLIANT.

    Declaration

    Swift

    public let status: ComplianceStatus
  • The title of the compliance item. For example, if the compliance item is a Windows patch, the title could be the title of the KB article for the patch; for example: Security Update for Active Directory Federation Services.

    Declaration

    Swift

    public let title: String?
  • Undocumented

    Declaration

    Swift

    public init(details: [String : String]? = nil, id: String? = nil, severity: ComplianceSeverity, status: ComplianceStatus, title: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws