Struct aws_sdk_location::input::CreateMapInput
source · [−]#[non_exhaustive]pub struct CreateMapInput {
pub map_name: Option<String>,
pub configuration: Option<MapConfiguration>,
pub pricing_plan: Option<PricingPlan>,
pub description: Option<String>,
pub tags: Option<HashMap<String, 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.map_name: Option<String>
The name for the map resource.
Requirements:
-
Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique map resource name.
-
No spaces allowed. For example,
ExampleMap
.
configuration: Option<MapConfiguration>
Specifies the map style selected from an available data provider.
pricing_plan: Option<PricingPlan>
No longer used. If included, the only allowed value is RequestBasedUsage
.
description: Option<String>
An optional description for the map resource.
Applies one or more tags to the map resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: "key" : "value"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use "aws:" as a prefix for a key.
Implementations
sourceimpl CreateMapInput
impl CreateMapInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMap, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMap, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateMap
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateMapInput
sourceimpl CreateMapInput
impl CreateMapInput
sourcepub fn map_name(&self) -> Option<&str>
pub fn map_name(&self) -> Option<&str>
The name for the map resource.
Requirements:
-
Must contain only alphanumeric characters (A–Z, a–z, 0–9), hyphens (-), periods (.), and underscores (_).
-
Must be a unique map resource name.
-
No spaces allowed. For example,
ExampleMap
.
sourcepub fn configuration(&self) -> Option<&MapConfiguration>
pub fn configuration(&self) -> Option<&MapConfiguration>
Specifies the map style selected from an available data provider.
sourcepub fn pricing_plan(&self) -> Option<&PricingPlan>
pub fn pricing_plan(&self) -> Option<&PricingPlan>
No longer used. If included, the only allowed value is RequestBasedUsage
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An optional description for the map resource.
Applies one or more tags to the map resource. A tag is a key-value pair helps manage, identify, search, and filter your resources by labelling them.
Format: "key" : "value"
Restrictions:
-
Maximum 50 tags per resource
-
Each resource tag must be unique with a maximum of one value.
-
Maximum key length: 128 Unicode characters in UTF-8
-
Maximum value length: 256 Unicode characters in UTF-8
-
Can use alphanumeric characters (A–Z, a–z, 0–9), and the following characters: + - = . _ : / @.
-
Cannot use "aws:" as a prefix for a key.
Trait Implementations
sourceimpl Clone for CreateMapInput
impl Clone for CreateMapInput
sourcefn clone(&self) -> CreateMapInput
fn clone(&self) -> CreateMapInput
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 more
sourceimpl Debug for CreateMapInput
impl Debug for CreateMapInput
sourceimpl PartialEq<CreateMapInput> for CreateMapInput
impl PartialEq<CreateMapInput> for CreateMapInput
sourcefn eq(&self, other: &CreateMapInput) -> bool
fn eq(&self, other: &CreateMapInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateMapInput) -> bool
fn ne(&self, other: &CreateMapInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateMapInput
Auto Trait Implementations
impl RefUnwindSafe for CreateMapInput
impl Send for CreateMapInput
impl Sync for CreateMapInput
impl Unpin for CreateMapInput
impl UnwindSafe for CreateMapInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more