#[non_exhaustive]pub struct CreateHttpNamespaceInput {
pub name: Option<String>,
pub creator_request_id: Option<String>,
pub description: Option<String>,
pub tags: Option<Vec<Tag>>,
}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.name: Option<String>The name that you want to assign to this namespace.
creator_request_id: Option<String>A unique string that identifies the request and that allows failed CreateHttpNamespace requests to be retried without the risk of running the operation twice. CreatorRequestId can be any unique string (for example, a date/time stamp).
description: Option<String>A description for the namespace.
The tags to add to the namespace. Each tag consists of a key and an optional value that you define. Tags keys can be up to 128 characters in length, and tag values can be up to 256 characters in length.
Implementations§
source§impl CreateHttpNamespaceInput
impl CreateHttpNamespaceInput
sourcepub fn creator_request_id(&self) -> Option<&str>
pub fn creator_request_id(&self) -> Option<&str>
A unique string that identifies the request and that allows failed CreateHttpNamespace requests to be retried without the risk of running the operation twice. CreatorRequestId can be any unique string (for example, a date/time stamp).
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the namespace.
The tags to add to the namespace. Each tag consists of a key and an optional value that you define. Tags keys can be up to 128 characters in length, and tag values can be up to 256 characters in length.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl CreateHttpNamespaceInput
impl CreateHttpNamespaceInput
sourcepub fn builder() -> CreateHttpNamespaceInputBuilder
pub fn builder() -> CreateHttpNamespaceInputBuilder
Creates a new builder-style object to manufacture CreateHttpNamespaceInput.
Trait Implementations§
source§impl Clone for CreateHttpNamespaceInput
impl Clone for CreateHttpNamespaceInput
source§fn clone(&self) -> CreateHttpNamespaceInput
fn clone(&self) -> CreateHttpNamespaceInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateHttpNamespaceInput
impl Debug for CreateHttpNamespaceInput
source§impl PartialEq for CreateHttpNamespaceInput
impl PartialEq for CreateHttpNamespaceInput
impl StructuralPartialEq for CreateHttpNamespaceInput
Auto Trait Implementations§
impl Freeze for CreateHttpNamespaceInput
impl RefUnwindSafe for CreateHttpNamespaceInput
impl Send for CreateHttpNamespaceInput
impl Sync for CreateHttpNamespaceInput
impl Unpin for CreateHttpNamespaceInput
impl UnwindSafe for CreateHttpNamespaceInput
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