Struct aws_sdk_ec2::input::ModifyReservedInstancesInput [−][src]
#[non_exhaustive]pub struct ModifyReservedInstancesInput {
pub reserved_instances_ids: Option<Vec<String>>,
pub client_token: Option<String>,
pub target_configurations: Option<Vec<ReservedInstancesConfiguration>>,
}
Expand description
Contains the parameters for ModifyReservedInstances.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.reserved_instances_ids: Option<Vec<String>>
The IDs of the Reserved Instances to modify.
client_token: Option<String>
A unique, case-sensitive token you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.
target_configurations: Option<Vec<ReservedInstancesConfiguration>>
The configuration settings for the Reserved Instances to modify.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyReservedInstances, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ModifyReservedInstances, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ModifyReservedInstances
>
Creates a new builder-style object to manufacture ModifyReservedInstancesInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for ModifyReservedInstancesInput
impl Sync for ModifyReservedInstancesInput
impl Unpin for ModifyReservedInstancesInput
impl UnwindSafe for ModifyReservedInstancesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more