import { _UnmarshalledResolverRuleAssociation } from "./_ResolverRuleAssociation"; import * as __aws_sdk_types from "@aws-sdk/types"; /** * ListResolverRuleAssociationsOutput shape */ export interface ListResolverRuleAssociationsOutput extends __aws_sdk_types.MetadataBearer { /** *

If more than MaxResults rule associations match the specified criteria, you can submit another ListResolverRuleAssociation request to get the next group of results. In the next request, specify the value of NextToken from the previous response.

*/ NextToken?: string; /** *

The value that you specified for MaxResults in the request.

*/ MaxResults?: number; /** *

The associations that were created between resolver rules and VPCs using the current AWS account, and that match the specified filters, if any.

*/ ResolverRuleAssociations?: Array<_UnmarshalledResolverRuleAssociation>; /** * Metadata about the response received, including the HTTP status code, HTTP headers, and any request identifiers recognized by the SDK. */ $metadata: __aws_sdk_types.ResponseMetadata; }