pub struct CreateHostInput {
pub name: String,
pub provider_endpoint: String,
pub provider_type: String,
pub tags: Option<Vec<Tag>>,
pub vpc_configuration: Option<VpcConfiguration>,
}
Fields§
§name: String
The name of the host to be created. The name must be unique in the calling AWS account.
provider_endpoint: String
The endpoint of the infrastructure to be represented by the host after it is created.
provider_type: String
The name of the installed provider to be associated with your connection. The host resource represents the infrastructure where your provider type is installed. The valid provider type is GitHub Enterprise Server.
vpc_configuration: Option<VpcConfiguration>
The VPC configuration to be provisioned for the host. A VPC must be configured and the infrastructure to be represented by the host must already be connected to the VPC.
Trait Implementations§
Source§impl Clone for CreateHostInput
impl Clone for CreateHostInput
Source§fn clone(&self) -> CreateHostInput
fn clone(&self) -> CreateHostInput
Returns a duplicate 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 CreateHostInput
impl Debug for CreateHostInput
Source§impl Default for CreateHostInput
impl Default for CreateHostInput
Source§fn default() -> CreateHostInput
fn default() -> CreateHostInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateHostInput
impl PartialEq for CreateHostInput
Source§impl Serialize for CreateHostInput
impl Serialize for CreateHostInput
impl StructuralPartialEq for CreateHostInput
Auto Trait Implementations§
impl Freeze for CreateHostInput
impl RefUnwindSafe for CreateHostInput
impl Send for CreateHostInput
impl Sync for CreateHostInput
impl Unpin for CreateHostInput
impl UnwindSafe for CreateHostInput
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