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

A builder for CreateEntitlementInput.

Implementations§

The name of the entitlement.

Examples found in repository?
src/client.rs (line 2068)
2067
2068
2069
2070
        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 2073)
2072
2073
2074
2075
        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 2078)
2077
2078
2079
2080
        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 2083)
2082
2083
2084
2085
        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 2088)
2087
2088
2089
2090
        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 2093)
2092
2093
2094
2095
        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 selected apps are entitled.

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

Specifies whether all or selected apps are entitled.

Examples found in repository?
src/client.rs (line 2106)
2102
2103
2104
2105
2106
2107
2108
        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 2115)
2114
2115
2116
2117
        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 2123)
2119
2120
2121
2122
2123
2124
2125
        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 CreateEntitlementInput.

Examples found in repository?
src/client.rs (line 2035)
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
        pub async fn customize(
            self,
        ) -> std::result::Result<
            crate::operation::customize::CustomizableOperation<
                crate::operation::CreateEntitlement,
                aws_http::retry::AwsResponseRetryClassifier,
            >,
            aws_smithy_http::result::SdkError<crate::error::CreateEntitlementError>,
        > {
            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::CreateEntitlementOutput,
            aws_smithy_http::result::SdkError<crate::error::CreateEntitlementError>,
        > {
            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