Struct aws_sdk_computeoptimizer::operation::export_ec2_instance_recommendations::builders::ExportEc2InstanceRecommendationsOutputBuilder
source · #[non_exhaustive]pub struct ExportEc2InstanceRecommendationsOutputBuilder { /* private fields */ }
Expand description
A builder for ExportEc2InstanceRecommendationsOutput
.
Implementations§
source§impl ExportEc2InstanceRecommendationsOutputBuilder
impl ExportEc2InstanceRecommendationsOutputBuilder
sourcepub fn job_id(self, input: impl Into<String>) -> Self
pub fn job_id(self, input: impl Into<String>) -> Self
The identification number of the export job.
Use the DescribeRecommendationExportJobs
action, and specify the job ID to view the status of an export job.
sourcepub fn set_job_id(self, input: Option<String>) -> Self
pub fn set_job_id(self, input: Option<String>) -> Self
The identification number of the export job.
Use the DescribeRecommendationExportJobs
action, and specify the job ID to view the status of an export job.
sourcepub fn get_job_id(&self) -> &Option<String>
pub fn get_job_id(&self) -> &Option<String>
The identification number of the export job.
Use the DescribeRecommendationExportJobs
action, and specify the job ID to view the status of an export job.
sourcepub fn s3_destination(self, input: S3Destination) -> Self
pub fn s3_destination(self, input: S3Destination) -> Self
An object that describes the destination Amazon S3 bucket of a recommendations export file.
sourcepub fn set_s3_destination(self, input: Option<S3Destination>) -> Self
pub fn set_s3_destination(self, input: Option<S3Destination>) -> Self
An object that describes the destination Amazon S3 bucket of a recommendations export file.
sourcepub fn get_s3_destination(&self) -> &Option<S3Destination>
pub fn get_s3_destination(&self) -> &Option<S3Destination>
An object that describes the destination Amazon S3 bucket of a recommendations export file.
sourcepub fn build(self) -> ExportEc2InstanceRecommendationsOutput
pub fn build(self) -> ExportEc2InstanceRecommendationsOutput
Consumes the builder and constructs a ExportEc2InstanceRecommendationsOutput
.
Trait Implementations§
source§impl Clone for ExportEc2InstanceRecommendationsOutputBuilder
impl Clone for ExportEc2InstanceRecommendationsOutputBuilder
source§fn clone(&self) -> ExportEc2InstanceRecommendationsOutputBuilder
fn clone(&self) -> ExportEc2InstanceRecommendationsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ExportEc2InstanceRecommendationsOutputBuilder
impl Default for ExportEc2InstanceRecommendationsOutputBuilder
source§fn default() -> ExportEc2InstanceRecommendationsOutputBuilder
fn default() -> ExportEc2InstanceRecommendationsOutputBuilder
source§impl PartialEq for ExportEc2InstanceRecommendationsOutputBuilder
impl PartialEq for ExportEc2InstanceRecommendationsOutputBuilder
source§fn eq(&self, other: &ExportEc2InstanceRecommendationsOutputBuilder) -> bool
fn eq(&self, other: &ExportEc2InstanceRecommendationsOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ExportEc2InstanceRecommendationsOutputBuilder
Auto Trait Implementations§
impl Freeze for ExportEc2InstanceRecommendationsOutputBuilder
impl RefUnwindSafe for ExportEc2InstanceRecommendationsOutputBuilder
impl Send for ExportEc2InstanceRecommendationsOutputBuilder
impl Sync for ExportEc2InstanceRecommendationsOutputBuilder
impl Unpin for ExportEc2InstanceRecommendationsOutputBuilder
impl UnwindSafe for ExportEc2InstanceRecommendationsOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more