GetComplianceDetailsByConfigRuleRequest

public struct GetComplianceDetailsByConfigRuleRequest : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let complianceTypes: [ComplianceType]?
  • The name of the AWS Config rule for which you want compliance information.

    Declaration

    Swift

    public let configRuleName: String
  • The maximum number of evaluation results returned on each page. The default is 10. You cannot specify a number greater than 100. If you specify 0, AWS Config uses the default.

    Declaration

    Swift

    public let limit: Int?
  • The nextToken string returned on a previous page that you use to get the next page of results in a paginated response.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(complianceTypes: [ComplianceType]? = nil, configRuleName: String, limit: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws