Struct aws_sdk_emrcontainers::operation::create_managed_endpoint::CreateManagedEndpointOutput
source · #[non_exhaustive]pub struct CreateManagedEndpointOutput {
pub id: Option<String>,
pub name: Option<String>,
pub arn: Option<String>,
pub virtual_cluster_id: Option<String>,
/* private fields */
}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.id: Option<String>The output contains the ID of the managed endpoint.
name: Option<String>The output contains the name of the managed endpoint.
arn: Option<String>The output contains the ARN of the managed endpoint.
virtual_cluster_id: Option<String>The output contains the ID of the virtual cluster.
Implementations§
source§impl CreateManagedEndpointOutput
impl CreateManagedEndpointOutput
sourcepub fn virtual_cluster_id(&self) -> Option<&str>
pub fn virtual_cluster_id(&self) -> Option<&str>
The output contains the ID of the virtual cluster.
source§impl CreateManagedEndpointOutput
impl CreateManagedEndpointOutput
sourcepub fn builder() -> CreateManagedEndpointOutputBuilder
pub fn builder() -> CreateManagedEndpointOutputBuilder
Creates a new builder-style object to manufacture CreateManagedEndpointOutput.
Trait Implementations§
source§impl Clone for CreateManagedEndpointOutput
impl Clone for CreateManagedEndpointOutput
source§fn clone(&self) -> CreateManagedEndpointOutput
fn clone(&self) -> CreateManagedEndpointOutput
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 CreateManagedEndpointOutput
impl Debug for CreateManagedEndpointOutput
source§impl PartialEq<CreateManagedEndpointOutput> for CreateManagedEndpointOutput
impl PartialEq<CreateManagedEndpointOutput> for CreateManagedEndpointOutput
source§fn eq(&self, other: &CreateManagedEndpointOutput) -> bool
fn eq(&self, other: &CreateManagedEndpointOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for CreateManagedEndpointOutput
impl RequestId for CreateManagedEndpointOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for CreateManagedEndpointOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateManagedEndpointOutput
impl Send for CreateManagedEndpointOutput
impl Sync for CreateManagedEndpointOutput
impl Unpin for CreateManagedEndpointOutput
impl UnwindSafe for CreateManagedEndpointOutput
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