[][src]Struct rusoto_servicecatalog::ExecuteProvisionedProductServiceActionInput

pub struct ExecuteProvisionedProductServiceActionInput {
    pub accept_language: Option<String>,
    pub execute_token: String,
    pub parameters: Option<HashMap<String, Vec<String>>>,
    pub provisioned_product_id: String,
    pub service_action_id: String,
}

Fields

accept_language: Option<String>

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

execute_token: String

An idempotency token that uniquely identifies the execute request.

parameters: Option<HashMap<String, Vec<String>>>

A map of all self-service action parameters and their values. If a provided parameter is of a special type, such as TARGET, the provided value will override the default value generated by AWS Service Catalog. If the parameters field is not provided, no additional parameters are passed and default values will be used for any special parameters such as TARGET.

provisioned_product_id: String

The identifier of the provisioned product.

service_action_id: String

The self-service action identifier. For example, act-fs7abcd89wxyz.

Trait Implementations

impl Clone for ExecuteProvisionedProductServiceActionInput[src]

impl Debug for ExecuteProvisionedProductServiceActionInput[src]

impl Default for ExecuteProvisionedProductServiceActionInput[src]

impl PartialEq<ExecuteProvisionedProductServiceActionInput> for ExecuteProvisionedProductServiceActionInput[src]

impl Serialize for ExecuteProvisionedProductServiceActionInput[src]

impl StructuralPartialEq for ExecuteProvisionedProductServiceActionInput[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.