[][src]Struct rusoto_codestar_connections::CreateHostInput

pub struct CreateHostInput {
    pub name: String,
    pub provider_endpoint: String,
    pub provider_type: String,
    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

impl Clone for CreateHostInput[src]

impl Debug for CreateHostInput[src]

impl Default for CreateHostInput[src]

impl PartialEq<CreateHostInput> for CreateHostInput[src]

impl Serialize for CreateHostInput[src]

impl StructuralPartialEq for CreateHostInput[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.