Struct aws_sdk_appmesh::operation::create_mesh::CreateMeshInput
source · #[non_exhaustive]pub struct CreateMeshInput {
pub mesh_name: Option<String>,
pub spec: Option<MeshSpec>,
pub tags: Option<Vec<TagRef>>,
pub client_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.mesh_name: Option<String>
The name to use for the service mesh.
spec: Option<MeshSpec>
The service mesh specification to apply.
Optional metadata that you can apply to the service mesh to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
Implementations§
source§impl CreateMeshInput
impl CreateMeshInput
Optional metadata that you can apply to the service mesh to assist with categorization and organization. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
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()
.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Up to 36 letters, numbers, hyphens, and underscores are allowed.
source§impl CreateMeshInput
impl CreateMeshInput
sourcepub fn builder() -> CreateMeshInputBuilder
pub fn builder() -> CreateMeshInputBuilder
Creates a new builder-style object to manufacture CreateMeshInput
.
Trait Implementations§
source§impl Clone for CreateMeshInput
impl Clone for CreateMeshInput
source§fn clone(&self) -> CreateMeshInput
fn clone(&self) -> CreateMeshInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateMeshInput
impl Debug for CreateMeshInput
source§impl PartialEq for CreateMeshInput
impl PartialEq for CreateMeshInput
source§fn eq(&self, other: &CreateMeshInput) -> bool
fn eq(&self, other: &CreateMeshInput) -> bool
self
and other
values to be equal, and is used
by ==
.