Struct aws_sdk_computeoptimizer::operation::update_enrollment_status::builders::UpdateEnrollmentStatusFluentBuilder
source · pub struct UpdateEnrollmentStatusFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateEnrollmentStatus
.
Updates the enrollment (opt in and opt out) status of an account to the Compute Optimizer service.
If the account is a management account of an organization, this action can also be used to enroll member accounts of the organization.
You must have the appropriate permissions to opt in to Compute Optimizer, to view its recommendations, and to opt out. For more information, see Controlling access with Amazon Web Services Identity and Access Management in the Compute Optimizer User Guide.
When you opt in, Compute Optimizer automatically creates a service-linked role in your account to access its data. For more information, see Using Service-Linked Roles for Compute Optimizer in the Compute Optimizer User Guide.
Implementations§
source§impl UpdateEnrollmentStatusFluentBuilder
impl UpdateEnrollmentStatusFluentBuilder
sourcepub fn as_input(&self) -> &UpdateEnrollmentStatusInputBuilder
pub fn as_input(&self) -> &UpdateEnrollmentStatusInputBuilder
Access the UpdateEnrollmentStatus as a reference.
sourcepub async fn send(
self
) -> Result<UpdateEnrollmentStatusOutput, SdkError<UpdateEnrollmentStatusError, HttpResponse>>
pub async fn send( self ) -> Result<UpdateEnrollmentStatusOutput, SdkError<UpdateEnrollmentStatusError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<UpdateEnrollmentStatusOutput, UpdateEnrollmentStatusError, Self>
pub fn customize( self ) -> CustomizableOperation<UpdateEnrollmentStatusOutput, UpdateEnrollmentStatusError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn status(self, input: Status) -> Self
pub fn status(self, input: Status) -> Self
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 set_status(self, input: Option<Status>) -> Self
pub fn set_status(self, input: Option<Status>) -> Self
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 get_status(&self) -> &Option<Status>
pub fn get_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, input: bool) -> Self
pub fn include_member_accounts(self, input: bool) -> Self
Indicates whether to enroll member accounts of the organization if the account is the management account of an organization.
sourcepub fn set_include_member_accounts(self, input: Option<bool>) -> Self
pub fn set_include_member_accounts(self, input: Option<bool>) -> Self
Indicates whether to enroll member accounts of the organization if the account is the management account of an organization.
sourcepub fn get_include_member_accounts(&self) -> &Option<bool>
pub fn get_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.
Trait Implementations§
source§impl Clone for UpdateEnrollmentStatusFluentBuilder
impl Clone for UpdateEnrollmentStatusFluentBuilder
source§fn clone(&self) -> UpdateEnrollmentStatusFluentBuilder
fn clone(&self) -> UpdateEnrollmentStatusFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more