#[non_exhaustive]pub struct CreateVirtualClusterInput {
pub name: Option<String>,
pub container_provider: Option<ContainerProvider>,
pub client_token: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The specified name of the virtual cluster.
container_provider: Option<ContainerProvider>The container provider of the virtual cluster.
client_token: Option<String>The client token of the virtual cluster.
The tags assigned to the virtual cluster.
Implementations§
source§impl CreateVirtualClusterInput
impl CreateVirtualClusterInput
sourcepub fn container_provider(&self) -> Option<&ContainerProvider>
pub fn container_provider(&self) -> Option<&ContainerProvider>
The container provider of the virtual cluster.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
The client token of the virtual cluster.
The tags assigned to the virtual cluster.
source§impl CreateVirtualClusterInput
impl CreateVirtualClusterInput
sourcepub fn builder() -> CreateVirtualClusterInputBuilder
pub fn builder() -> CreateVirtualClusterInputBuilder
Creates a new builder-style object to manufacture CreateVirtualClusterInput.
Trait Implementations§
source§impl Clone for CreateVirtualClusterInput
impl Clone for CreateVirtualClusterInput
source§fn clone(&self) -> CreateVirtualClusterInput
fn clone(&self) -> CreateVirtualClusterInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for CreateVirtualClusterInput
impl Debug for CreateVirtualClusterInput
source§impl PartialEq<CreateVirtualClusterInput> for CreateVirtualClusterInput
impl PartialEq<CreateVirtualClusterInput> for CreateVirtualClusterInput
source§fn eq(&self, other: &CreateVirtualClusterInput) -> bool
fn eq(&self, other: &CreateVirtualClusterInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateVirtualClusterInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateVirtualClusterInput
impl Send for CreateVirtualClusterInput
impl Sync for CreateVirtualClusterInput
impl Unpin for CreateVirtualClusterInput
impl UnwindSafe for CreateVirtualClusterInput
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
Mutably borrows from an owned value. Read more