pub struct Builder { /* private fields */ }
Expand description

A builder for UpdateEntitlementInput.

Implementations§

The name of the entitlement.

Examples found in repository?
src/client.rs (line 7728)
7727
7728
7729
7730
        pub fn name(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.name(input.into());
            self
        }

The name of the entitlement.

Examples found in repository?
src/client.rs (line 7733)
7732
7733
7734
7735
        pub fn set_name(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_name(input);
            self
        }

The name of the stack with which the entitlement is associated.

Examples found in repository?
src/client.rs (line 7738)
7737
7738
7739
7740
        pub fn stack_name(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.stack_name(input.into());
            self
        }

The name of the stack with which the entitlement is associated.

Examples found in repository?
src/client.rs (line 7743)
7742
7743
7744
7745
        pub fn set_stack_name(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_stack_name(input);
            self
        }

The description of the entitlement.

Examples found in repository?
src/client.rs (line 7748)
7747
7748
7749
7750
        pub fn description(mut self, input: impl Into<std::string::String>) -> Self {
            self.inner = self.inner.description(input.into());
            self
        }

The description of the entitlement.

Examples found in repository?
src/client.rs (line 7753)
7752
7753
7754
7755
        pub fn set_description(mut self, input: std::option::Option<std::string::String>) -> Self {
            self.inner = self.inner.set_description(input);
            self
        }

Specifies whether all or only selected apps are entitled.

Examples found in repository?
src/client.rs (line 7758)
7757
7758
7759
7760
        pub fn app_visibility(mut self, input: crate::model::AppVisibility) -> Self {
            self.inner = self.inner.app_visibility(input);
            self
        }

Specifies whether all or only selected apps are entitled.

Examples found in repository?
src/client.rs (line 7766)
7762
7763
7764
7765
7766
7767
7768
        pub fn set_app_visibility(
            mut self,
            input: std::option::Option<crate::model::AppVisibility>,
        ) -> Self {
            self.inner = self.inner.set_app_visibility(input);
            self
        }

Appends an item to attributes.

To override the contents of this collection use set_attributes.

The attributes of the entitlement.

Examples found in repository?
src/client.rs (line 7775)
7774
7775
7776
7777
        pub fn attributes(mut self, input: crate::model::EntitlementAttribute) -> Self {
            self.inner = self.inner.attributes(input);
            self
        }

The attributes of the entitlement.

Examples found in repository?
src/client.rs (line 7783)
7779
7780
7781
7782
7783
7784
7785
        pub fn set_attributes(
            mut self,
            input: std::option::Option<std::vec::Vec<crate::model::EntitlementAttribute>>,
        ) -> Self {
            self.inner = self.inner.set_attributes(input);
            self
        }

Consumes the builder and constructs a UpdateEntitlementInput.

Examples found in repository?
src/client.rs (line 7695)
7683
7684
7685
7686
7687
7688
7689
7690
7691
7692
7693
7694
7695
7696
7697
7698
7699
7700
7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
7717
7718
7719
7720
7721
7722
7723
7724
7725
        pub async fn customize(
            self,
        ) -> std::result::Result<
            crate::operation::customize::CustomizableOperation<
                crate::operation::UpdateEntitlement,
                aws_http::retry::AwsResponseRetryClassifier,
            >,
            aws_smithy_http::result::SdkError<crate::error::UpdateEntitlementError>,
        > {
            let handle = self.handle.clone();
            let operation = self
                .inner
                .build()
                .map_err(aws_smithy_http::result::SdkError::construction_failure)?
                .make_operation(&handle.conf)
                .await
                .map_err(aws_smithy_http::result::SdkError::construction_failure)?;
            Ok(crate::operation::customize::CustomizableOperation { handle, operation })
        }

        /// 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](aws_smithy_types::retry::RetryConfig), which can be
        /// set when configuring the client.
        pub async fn send(
            self,
        ) -> std::result::Result<
            crate::output::UpdateEntitlementOutput,
            aws_smithy_http::result::SdkError<crate::error::UpdateEntitlementError>,
        > {
            let op = self
                .inner
                .build()
                .map_err(aws_smithy_http::result::SdkError::construction_failure)?
                .make_operation(&self.handle.conf)
                .await
                .map_err(aws_smithy_http::result::SdkError::construction_failure)?;
            self.handle.client.call(op).await
        }

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Returns the “default value” for a type. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
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