Struct aws_sdk_computeoptimizer::operation::update_enrollment_status::UpdateEnrollmentStatusInput
source · #[non_exhaustive]pub struct UpdateEnrollmentStatusInput {
pub status: Option<Status>,
pub include_member_accounts: Option<bool>,
}
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.status: Option<Status>
The new enrollment status of the account.
The following status options are available:
-
Active
- Opts in your account to the Compute Optimizer service. Compute Optimizer begins analyzing the configuration and utilization metrics of your Amazon Web Services resources after you opt in. For more information, see Metrics analyzed by Compute Optimizer in the Compute Optimizer User Guide. -
Inactive
- Opts out your account from the Compute Optimizer service. Your account's recommendations and related metrics data will be deleted from Compute Optimizer after you opt out.
The Pending
and Failed
options cannot be used to update the enrollment status of an account. They are returned in the response of a request to update the enrollment status of an account.
include_member_accounts: Option<bool>
Indicates whether to enroll member accounts of the organization if the account is the management account of an organization.
Implementations§
source§impl UpdateEnrollmentStatusInput
impl UpdateEnrollmentStatusInput
sourcepub fn status(&self) -> Option<&Status>
pub fn status(&self) -> Option<&Status>
The new enrollment status of the account.
The following status options are available:
-
Active
- Opts in your account to the Compute Optimizer service. Compute Optimizer begins analyzing the configuration and utilization metrics of your Amazon Web Services resources after you opt in. For more information, see Metrics analyzed by Compute Optimizer in the Compute Optimizer User Guide. -
Inactive
- Opts out your account from the Compute Optimizer service. Your account's recommendations and related metrics data will be deleted from Compute Optimizer after you opt out.
The Pending
and Failed
options cannot be used to update the enrollment status of an account. They are returned in the response of a request to update the enrollment status of an account.
sourcepub fn include_member_accounts(&self) -> Option<bool>
pub fn include_member_accounts(&self) -> Option<bool>
Indicates whether to enroll member accounts of the organization if the account is the management account of an organization.
source§impl UpdateEnrollmentStatusInput
impl UpdateEnrollmentStatusInput
sourcepub fn builder() -> UpdateEnrollmentStatusInputBuilder
pub fn builder() -> UpdateEnrollmentStatusInputBuilder
Creates a new builder-style object to manufacture UpdateEnrollmentStatusInput
.
Trait Implementations§
source§impl Clone for UpdateEnrollmentStatusInput
impl Clone for UpdateEnrollmentStatusInput
source§fn clone(&self) -> UpdateEnrollmentStatusInput
fn clone(&self) -> UpdateEnrollmentStatusInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateEnrollmentStatusInput
impl Debug for UpdateEnrollmentStatusInput
source§impl PartialEq for UpdateEnrollmentStatusInput
impl PartialEq for UpdateEnrollmentStatusInput
source§fn eq(&self, other: &UpdateEnrollmentStatusInput) -> bool
fn eq(&self, other: &UpdateEnrollmentStatusInput) -> bool
self
and other
values to be equal, and is used
by ==
.