ConformancePackEvaluationFilters

public struct ConformancePackEvaluationFilters : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Filters the results by compliance. The allowed values are COMPLIANT and NON_COMPLIANT.

    Declaration

    Swift

    public let complianceType: ConformancePackComplianceType?
  • Filters the results by AWS Config rule names.

    Declaration

    Swift

    public let configRuleNames: [String]?
  • Filters the results by resource IDs. This is valid only when you provide resource type. If there is no resource type, you will see an error.

    Declaration

    Swift

    public let resourceIds: [String]?
  • Filters the results by the resource type (for example, “AWS::EC2::Instance”).

    Declaration

    Swift

    public let resourceType: String?
  • Undocumented

    Declaration

    Swift

    public init(complianceType: ConformancePackComplianceType? = nil, configRuleNames: [String]? = nil, resourceIds: [String]? = nil, resourceType: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws