Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GetIpamAddressHistoryRequest

import type { GetIpamAddressHistoryRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface GetIpamAddressHistoryRequest {
Cidr: string;
DryRun?: boolean | null;
EndTime?: Date | number | null;
IpamScopeId: string;
MaxResults?: number | null;
NextToken?: string | null;
StartTime?: Date | number | null;
VpcId?: string | null;
}

§Properties

§
Cidr: string
[src]

The CIDR you want the history of. The CIDR can be an IPv4 or IPv6 IP address range. If you enter a /16 IPv4 CIDR, you will get records that match it exactly. You will not get records for any subnets within the /16 CIDR.

§
DryRun?: boolean | null
[src]

A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
EndTime?: Date | number | null
[src]

The end of the time period for which you are looking for history. If you omit this option, it will default to the current time.

§
IpamScopeId: string
[src]

The ID of the IPAM scope that the CIDR is in.

§
MaxResults?: number | null
[src]

The maximum number of historical results you would like returned per page. Defaults to 100.

§
NextToken?: string | null
[src]

The token for the next page of results.

§
StartTime?: Date | number | null
[src]

The start of the time period for which you are looking for history. If you omit this option, it will default to the value of EndTime.

§
VpcId?: string | null
[src]

The ID of the VPC you want your history records filtered by.