Struct aws_sdk_backup::input::UpdateFrameworkInput
source · [−]#[non_exhaustive]pub struct UpdateFrameworkInput { /* private fields */ }
Implementations
sourceimpl UpdateFrameworkInput
impl UpdateFrameworkInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateFramework, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<UpdateFramework, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<UpdateFramework
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateFrameworkInput
.
sourceimpl UpdateFrameworkInput
impl UpdateFrameworkInput
sourcepub fn framework_name(&self) -> Option<&str>
pub fn framework_name(&self) -> Option<&str>
The unique name of a framework. This name is between 1 and 256 characters, starting with a letter, and consisting of letters (a-z, A-Z), numbers (0-9), and underscores (_).
sourcepub fn framework_description(&self) -> Option<&str>
pub fn framework_description(&self) -> Option<&str>
An optional description of the framework with a maximum 1,024 characters.
sourcepub fn framework_controls(&self) -> Option<&[FrameworkControl]>
pub fn framework_controls(&self) -> Option<&[FrameworkControl]>
A list of the controls that make up the framework. Each control in the list has a name, input parameters, and scope.
sourcepub fn idempotency_token(&self) -> Option<&str>
pub fn idempotency_token(&self) -> Option<&str>
A customer-chosen string that you can use to distinguish between otherwise identical calls to UpdateFrameworkInput
. Retrying a successful request with the same idempotency token results in a success message with no action taken.
Trait Implementations
sourceimpl Clone for UpdateFrameworkInput
impl Clone for UpdateFrameworkInput
sourcefn clone(&self) -> UpdateFrameworkInput
fn clone(&self) -> UpdateFrameworkInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for UpdateFrameworkInput
impl Debug for UpdateFrameworkInput
sourceimpl PartialEq<UpdateFrameworkInput> for UpdateFrameworkInput
impl PartialEq<UpdateFrameworkInput> for UpdateFrameworkInput
sourcefn eq(&self, other: &UpdateFrameworkInput) -> bool
fn eq(&self, other: &UpdateFrameworkInput) -> bool
impl StructuralPartialEq for UpdateFrameworkInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateFrameworkInput
impl Send for UpdateFrameworkInput
impl Sync for UpdateFrameworkInput
impl Unpin for UpdateFrameworkInput
impl UnwindSafe for UpdateFrameworkInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more