Struct rusoto_ec2::ModifyImageAttributeRequest[][src]

pub struct ModifyImageAttributeRequest {
    pub attribute: Option<String>,
    pub description: Option<AttributeValue>,
    pub dry_run: Option<bool>,
    pub image_id: String,
    pub launch_permission: Option<LaunchPermissionModifications>,
    pub operation_type: Option<String>,
    pub product_codes: Option<Vec<String>>,
    pub user_groups: Option<Vec<String>>,
    pub user_ids: Option<Vec<String>>,
    pub value: Option<String>,
}

Contains the parameters for ModifyImageAttribute.

Fields

The name of the attribute to modify. The valid values are description, launchPermission, and productCodes.

A new description for the AMI.

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

The ID of the AMI.

A new launch permission for the AMI.

The operation type. This parameter can be used only when the Attribute parameter is launchPermission.

One or more DevPay product codes. After you add a product code to an AMI, it can't be removed.

One or more user groups. This parameter can be used only when the Attribute parameter is launchPermission.

One or more AWS account IDs. This parameter can be used only when the Attribute parameter is launchPermission.

The value of the attribute being modified. This parameter can be used only when the Attribute parameter is description or productCodes.

Trait Implementations

impl Default for ModifyImageAttributeRequest
[src]

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

impl Debug for ModifyImageAttributeRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyImageAttributeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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