AWSEC2GetIpamAddressHistoryRequest

Objective-C

@interface AWSEC2GetIpamAddressHistoryRequest

Swift

class AWSEC2GetIpamAddressHistoryRequest
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable cidr;

    Swift

    var cidr: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable dryRun;

    Swift

    var dryRun: NSNumber? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable endTime;

    Swift

    var endTime: Date? { get set }
  • The ID of the IPAM scope that the CIDR is in.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable ipamScopeId;

    Swift

    var ipamScopeId: String? { get set }
  • The maximum number of historical results you would like returned per page. Defaults to 100.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable maxResults;

    Swift

    var maxResults: NSNumber? { get set }
  • The token for the next page of results.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable nextToken;

    Swift

    var nextToken: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDate *_Nullable startTime;

    Swift

    var startTime: Date? { get set }
  • The ID of the VPC you want your history records filtered by.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable vpcId;

    Swift

    var vpcId: String? { get set }