#[non_exhaustive]pub struct ImportHypervisorConfigurationInput {
pub name: Option<String>,
pub host: Option<String>,
pub username: Option<String>,
pub password: Option<String>,
pub kms_key_arn: Option<String>,
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 hypervisor.
host: Option<String>The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).
username: Option<String>The username for the hypervisor.
password: Option<String>The password for the hypervisor.
kms_key_arn: Option<String>The Key Management Service for the hypervisor.
The tags of the hypervisor configuration to import.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportHypervisorConfiguration, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportHypervisorConfiguration, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportHypervisorConfiguration>
Creates a new builder-style object to manufacture ImportHypervisorConfigurationInput
The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).
The Key Management Service for the hypervisor.
The tags of the hypervisor configuration to import.
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 Send for ImportHypervisorConfigurationInput
impl Sync for ImportHypervisorConfigurationInput
impl Unpin for ImportHypervisorConfigurationInput
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