Struct rusoto_ssm::CreateActivationRequest[][src]

pub struct CreateActivationRequest {
    pub default_instance_name: Option<String>,
    pub description: Option<String>,
    pub expiration_date: Option<f64>,
    pub iam_role: String,
    pub registration_limit: Option<i64>,
}

Fields

The name of the registered, managed instance as it will appear in the Amazon EC2 console or when you use the AWS command line tools to list EC2 resources.

Do not enter personally identifiable information in this field.

A user-defined description of the resource that you want to register with Amazon EC2.

Do not enter personally identifiable information in this field.

The date by which this activation request should expire. The default value is 24 hours.

The Amazon Identity and Access Management (IAM) role that you want to assign to the managed instance.

Specify the maximum number of managed instances you want to register. The default value is 1 instance.

Trait Implementations

impl Default for CreateActivationRequest
[src]

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

impl Debug for CreateActivationRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateActivationRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateActivationRequest
[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