Struct rusoto_ec2::CreateReservedInstancesListingRequest[][src]

pub struct CreateReservedInstancesListingRequest {
    pub client_token: String,
    pub instance_count: i64,
    pub price_schedules: Vec<PriceScheduleSpecification>,
    pub reserved_instances_id: String,
}

Contains the parameters for CreateReservedInstancesListing.

Fields

Unique, case-sensitive identifier you provide to ensure idempotency of your listings. This helps avoid duplicate listings. For more information, see Ensuring Idempotency.

The number of instances that are a part of a Reserved Instance account to be listed in the Reserved Instance Marketplace. This number should be less than or equal to the instance count associated with the Reserved Instance ID specified in this call.

A list specifying the price of the Standard Reserved Instance for each month remaining in the Reserved Instance term.

The ID of the active Standard Reserved Instance.

Trait Implementations

impl Default for CreateReservedInstancesListingRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateReservedInstancesListingRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateReservedInstancesListingRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateReservedInstancesListingRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations