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.

A 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 launch permission modification.

The operation type.

One or more product codes. After you add a product code to an AMI, it can't be removed. This is only valid when modifying the productCodes attribute.

One or more user groups. This is only valid when modifying the launchPermission attribute.

One or more AWS account IDs. This is only valid when modifying the launchPermission attribute.

The value of the attribute being modified. This is only valid when modifying the description attribute.

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.

impl Clone for ModifyImageAttributeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more