Struct aws_sdk_codestarconnections::output::GetHostOutput
source · [−]#[non_exhaustive]pub struct GetHostOutput {
pub name: Option<String>,
pub status: Option<String>,
pub provider_type: Option<ProviderType>,
pub provider_endpoint: Option<String>,
pub vpc_configuration: Option<VpcConfiguration>,
}
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 of the requested host.
status: Option<String>
The status of the requested host.
provider_type: Option<ProviderType>
The provider type of the requested host, such as GitHub Enterprise Server.
provider_endpoint: Option<String>
The endpoint of the infrastructure represented by the requested host.
vpc_configuration: Option<VpcConfiguration>
The VPC configuration of the requested host.
Implementations
sourceimpl GetHostOutput
impl GetHostOutput
sourcepub fn provider_type(&self) -> Option<&ProviderType>
pub fn provider_type(&self) -> Option<&ProviderType>
The provider type of the requested host, such as GitHub Enterprise Server.
sourcepub fn provider_endpoint(&self) -> Option<&str>
pub fn provider_endpoint(&self) -> Option<&str>
The endpoint of the infrastructure represented by the requested host.
sourcepub fn vpc_configuration(&self) -> Option<&VpcConfiguration>
pub fn vpc_configuration(&self) -> Option<&VpcConfiguration>
The VPC configuration of the requested host.
sourceimpl GetHostOutput
impl GetHostOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetHostOutput
Trait Implementations
sourceimpl Clone for GetHostOutput
impl Clone for GetHostOutput
sourcefn clone(&self) -> GetHostOutput
fn clone(&self) -> GetHostOutput
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 GetHostOutput
impl Debug for GetHostOutput
sourceimpl PartialEq<GetHostOutput> for GetHostOutput
impl PartialEq<GetHostOutput> for GetHostOutput
sourcefn eq(&self, other: &GetHostOutput) -> bool
fn eq(&self, other: &GetHostOutput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &GetHostOutput) -> bool
fn ne(&self, other: &GetHostOutput) -> bool
This method tests for !=
.
impl StructuralPartialEq for GetHostOutput
Auto Trait Implementations
impl RefUnwindSafe for GetHostOutput
impl Send for GetHostOutput
impl Sync for GetHostOutput
impl Unpin for GetHostOutput
impl UnwindSafe for GetHostOutput
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> 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