Struct aws_sdk_codestarconnections::input::CreateHostInput [−][src]
#[non_exhaustive]pub struct CreateHostInput {
pub name: Option<String>,
pub provider_type: Option<ProviderType>,
pub provider_endpoint: Option<String>,
pub vpc_configuration: Option<VpcConfiguration>,
pub tags: Option<Vec<Tag>>,
}
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 host to be created. The name must be unique in the calling AWS account.
provider_type: Option<ProviderType>
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.
provider_endpoint: Option<String>
The endpoint of the infrastructure to be represented by the host after it is created.
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.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHost, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHost, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateHost
>
Creates a new builder-style object to manufacture CreateHostInput
The name of the host to be created. The name must be unique in the calling AWS account.
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.
The endpoint of the infrastructure to be represented by the host after it is created.
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateHostInput
impl Send for CreateHostInput
impl Sync for CreateHostInput
impl Unpin for CreateHostInput
impl UnwindSafe for CreateHostInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more