[][src]Struct rusoto_ec2::CreateReservedInstancesListingRequest

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

client_token: String

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

instance_count: i64

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.

price_schedules: Vec<PriceScheduleSpecification>

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

reserved_instances_id: String

The ID of the active Standard Reserved Instance.

Trait Implementations

impl Clone for CreateReservedInstancesListingRequest[src]

impl Default for CreateReservedInstancesListingRequest[src]

impl PartialEq<CreateReservedInstancesListingRequest> for CreateReservedInstancesListingRequest[src]

impl Debug for CreateReservedInstancesListingRequest[src]

impl StructuralPartialEq for CreateReservedInstancesListingRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self