#[non_exhaustive]pub struct UpdateFrameworkInput {
pub framework_name: Option<String>,
pub framework_description: Option<String>,
pub framework_controls: Option<Vec<FrameworkControl>>,
pub idempotency_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.framework_name: Option<String>
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 (_).
framework_description: Option<String>
An optional description of the framework with a maximum 1,024 characters.
framework_controls: Option<Vec<FrameworkControl>>
A list of the controls that make up the framework. Each control in the list has a name, input parameters, and scope.
idempotency_token: Option<String>
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.
Implementations§
source§impl 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) -> &[FrameworkControl]
pub fn framework_controls(&self) -> &[FrameworkControl]
A list of the controls that make up the framework. Each control in the list has a name, input parameters, and scope.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .framework_controls.is_none()
.
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.
source§impl UpdateFrameworkInput
impl UpdateFrameworkInput
sourcepub fn builder() -> UpdateFrameworkInputBuilder
pub fn builder() -> UpdateFrameworkInputBuilder
Creates a new builder-style object to manufacture UpdateFrameworkInput
.
Trait Implementations§
source§impl Clone for UpdateFrameworkInput
impl Clone for UpdateFrameworkInput
source§fn clone(&self) -> UpdateFrameworkInput
fn clone(&self) -> UpdateFrameworkInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateFrameworkInput
impl Debug for UpdateFrameworkInput
source§impl PartialEq for UpdateFrameworkInput
impl PartialEq for UpdateFrameworkInput
impl StructuralPartialEq for UpdateFrameworkInput
Auto Trait Implementations§
impl Freeze for UpdateFrameworkInput
impl RefUnwindSafe for UpdateFrameworkInput
impl Send for UpdateFrameworkInput
impl Sync for UpdateFrameworkInput
impl Unpin for UpdateFrameworkInput
impl UnwindSafe for UpdateFrameworkInput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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