[][src]Struct rusoto_servicecatalog::CreateServiceActionInput

pub struct CreateServiceActionInput {
    pub accept_language: Option<String>,
    pub definition: HashMap<String, String>,
    pub definition_type: String,
    pub description: Option<String>,
    pub idempotency_token: String,
    pub name: String,
}

Fields

accept_language: Option<String>

The language code.

definition: HashMap<String, String>

The self-service action definition. Can be one of the following:

Name

The name of the AWS Systems Manager Document. For example, AWS-RestartEC2Instance.

Version

The AWS Systems Manager automation document version. For example, "Version": "1"

AssumeRole

The Amazon Resource Name (ARN) of the role that performs the self-service actions on your behalf. For example, "AssumeRole": "arn:aws:iam::12345678910:role/ActionRole".

To reuse the provisioned product launch role, set to "AssumeRole": "LAUNCH_ROLE".

Parameters

The list of parameters in JSON format.

For example: [{"Name":"InstanceId","Type":"TARGET"}].

definition_type: String

The service action definition type. For example, SSM_AUTOMATION.

description: Option<String>

The self-service action description.

idempotency_token: String

A unique identifier that you provide to ensure idempotency. If multiple requests differ only by the idempotency token, the same response is returned for each repeated request.

name: String

The self-service action name.

Trait Implementations

impl PartialEq<CreateServiceActionInput> for CreateServiceActionInput[src]

impl Default for CreateServiceActionInput[src]

impl Clone for CreateServiceActionInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateServiceActionInput[src]

impl Serialize for CreateServiceActionInput[src]

Auto Trait Implementations

impl Send for CreateServiceActionInput

impl Sync for CreateServiceActionInput

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self