#[non_exhaustive]pub struct GetHostOutputBuilder { /* private fields */ }
Expand description
A builder for GetHostOutput
.
Implementations§
source§impl GetHostOutputBuilder
impl GetHostOutputBuilder
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the requested host.
sourcepub fn provider_type(self, input: ProviderType) -> Self
pub fn provider_type(self, input: ProviderType) -> Self
The provider type of the requested host, such as GitHub Enterprise Server.
sourcepub fn set_provider_type(self, input: Option<ProviderType>) -> Self
pub fn set_provider_type(self, input: Option<ProviderType>) -> Self
The provider type of the requested host, such as GitHub Enterprise Server.
sourcepub fn provider_endpoint(self, input: impl Into<String>) -> Self
pub fn provider_endpoint(self, input: impl Into<String>) -> Self
The endpoint of the infrastructure represented by the requested host.
sourcepub fn set_provider_endpoint(self, input: Option<String>) -> Self
pub fn set_provider_endpoint(self, input: Option<String>) -> Self
The endpoint of the infrastructure represented by the requested host.
sourcepub fn vpc_configuration(self, input: VpcConfiguration) -> Self
pub fn vpc_configuration(self, input: VpcConfiguration) -> Self
The VPC configuration of the requested host.
sourcepub fn set_vpc_configuration(self, input: Option<VpcConfiguration>) -> Self
pub fn set_vpc_configuration(self, input: Option<VpcConfiguration>) -> Self
The VPC configuration of the requested host.
sourcepub fn build(self) -> GetHostOutput
pub fn build(self) -> GetHostOutput
Consumes the builder and constructs a GetHostOutput
.
Trait Implementations§
source§impl Clone for GetHostOutputBuilder
impl Clone for GetHostOutputBuilder
source§fn clone(&self) -> GetHostOutputBuilder
fn clone(&self) -> GetHostOutputBuilder
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 GetHostOutputBuilder
impl Debug for GetHostOutputBuilder
source§impl Default for GetHostOutputBuilder
impl Default for GetHostOutputBuilder
source§fn default() -> GetHostOutputBuilder
fn default() -> GetHostOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<GetHostOutputBuilder> for GetHostOutputBuilder
impl PartialEq<GetHostOutputBuilder> for GetHostOutputBuilder
source§fn eq(&self, other: &GetHostOutputBuilder) -> bool
fn eq(&self, other: &GetHostOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetHostOutputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for GetHostOutputBuilder
impl Send for GetHostOutputBuilder
impl Sync for GetHostOutputBuilder
impl Unpin for GetHostOutputBuilder
impl UnwindSafe for GetHostOutputBuilder
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