DescribeComplianceByResourceRequest

public struct DescribeComplianceByResourceRequest : AWSShape

Undocumented

  • Declaration

    Swift

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

    Declaration

    Swift

    public let complianceTypes: [ComplianceType]?
  • 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?
  • The ID of the AWS resource for which you want compliance information. You can specify only one resource ID. If you specify a resource ID, you must also specify a type for ResourceType.

    Declaration

    Swift

    public let resourceId: String?
  • The types of AWS resources for which you want compliance information (for example, AWS::EC2::Instance). For this action, you can specify that the resource type is an AWS account by specifying AWS::::Account.

    Declaration

    Swift

    public let resourceType: String?
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws