Struct aws_sdk_ec2instanceconnect::Client
source · pub struct Client { /* private fields */ }
Expand description
Client for AWS EC2 Instance Connect
Client for invoking operations on AWS EC2 Instance Connect. Each operation on AWS EC2 Instance Connect is a method on this
this struct. .send()
MUST be invoked on the generated operations to dispatch the request to the service.
Constructing a Client
A Config
is required to construct a client. For most use cases, the aws-config
crate should be used to automatically resolve this config using
aws_config::load_from_env()
, since this will resolve an SdkConfig
which can be shared
across multiple different AWS SDK clients. This config resolution process can be customized
by calling aws_config::from_env()
instead, which returns a ConfigLoader
that uses
the builder pattern to customize the default config.
In the simplest case, creating a client looks as follows:
let config = aws_config::load_from_env().await;
let client = aws_sdk_ec2instanceconnect::Client::new(&config);
Occasionally, SDKs may have additional service-specific that can be set on the Config
that
is absent from SdkConfig
, or slightly different settings for a specific client may be desired.
The Config
struct implements From<&SdkConfig>
, so setting these specific settings can be
done as follows:
let sdk_config = aws_config::load_from_env().await;
let config = aws_sdk_ec2instanceconnect::config::Builder::from(&sdk_config)
.some_service_specific_setting("value")
.build();
See the aws-config
docs and Config
for more information on customizing configuration.
Note: Client construction is expensive due to connection thread pool initialization, and should be done once at application start-up.
Using the Client
A client has a function for every operation that can be performed by the service.
For example, the SendSerialConsoleSSHPublicKey
operation has
a Client::send_serial_console_ssh_public_key
, function which returns a builder for that operation.
The fluent builder ultimately has a call()
function that returns an async future that
returns a result, as illustrated below:
let result = client.send_serial_console_ssh_public_key()
.instance_id("example")
.call()
.await;
The underlying HTTP requests that get made by this can be modified with the customize_operation
function on the fluent builder. See the customize
module for more
information.
Implementations§
source§impl Client
impl Client
sourcepub fn send_serial_console_ssh_public_key(
&self
) -> SendSerialConsoleSSHPublicKeyFluentBuilder
pub fn send_serial_console_ssh_public_key( &self ) -> SendSerialConsoleSSHPublicKeyFluentBuilder
Constructs a fluent builder for the SendSerialConsoleSSHPublicKey
operation.
- The fluent builder is configurable:
instance_id(impl Into<String>)
/set_instance_id(Option<String>)
:The ID of the EC2 instance.
serial_port(i32)
/set_serial_port(i32)
:The serial port of the EC2 instance. Currently only port 0 is supported.
Default: 0
ssh_public_key(impl Into<String>)
/set_ssh_public_key(Option<String>)
:The public key material. To use the public key, you must have the matching private key. For information about the supported key formats and lengths, see Requirements for key pairs in the Amazon EC2 User Guide.
- On success, responds with
SendSerialConsoleSshPublicKeyOutput
with field(s):request_id(Option<String>)
:The ID of the request. Please provide this ID when contacting AWS Support for assistance.
success(bool)
:Is true if the request succeeds and an error otherwise.
- On failure, responds with
SdkError<SendSerialConsoleSSHPublicKeyError>
source§impl Client
impl Client
sourcepub fn send_ssh_public_key(&self) -> SendSSHPublicKeyFluentBuilder
pub fn send_ssh_public_key(&self) -> SendSSHPublicKeyFluentBuilder
Constructs a fluent builder for the SendSSHPublicKey
operation.
- The fluent builder is configurable:
instance_id(impl Into<String>)
/set_instance_id(Option<String>)
:The ID of the EC2 instance.
instance_os_user(impl Into<String>)
/set_instance_os_user(Option<String>)
:The OS user on the EC2 instance for whom the key can be used to authenticate.
ssh_public_key(impl Into<String>)
/set_ssh_public_key(Option<String>)
:The public key material. To use the public key, you must have the matching private key.
availability_zone(impl Into<String>)
/set_availability_zone(Option<String>)
:The Availability Zone in which the EC2 instance was launched.
- On success, responds with
SendSshPublicKeyOutput
with field(s):request_id(Option<String>)
:The ID of the request. Please provide this ID when contacting AWS Support for assistance.
success(bool)
:Is true if the request succeeds and an error otherwise.
- On failure, responds with
SdkError<SendSSHPublicKeyError>
source§impl Client
impl Client
sourcepub fn with_config(
client: Client<DynConnector, DynMiddleware<DynConnector>>,
conf: Config
) -> Self
pub fn with_config( client: Client<DynConnector, DynMiddleware<DynConnector>>, conf: Config ) -> Self
Creates a client with the given service configuration.
source§impl Client
impl Client
sourcepub fn new(sdk_config: &SdkConfig) -> Self
pub fn new(sdk_config: &SdkConfig) -> Self
Creates a new client from an SDK Config.
Panics
- This method will panic if the
sdk_config
is missing an async sleep implementation. If you experience this panic, set thesleep_impl
on the Config passed into this function to fix it. - This method will panic if the
sdk_config
is missing an HTTP connector. If you experience this panic, set thehttp_connector
on the Config passed into this function to fix it.
sourcepub fn from_conf(conf: Config) -> Self
pub fn from_conf(conf: Config) -> Self
Creates a new client from the service Config
.
Panics
- This method will panic if the
conf
is missing an async sleep implementation. If you experience this panic, set thesleep_impl
on the Config passed into this function to fix it. - This method will panic if the
conf
is missing an HTTP connector. If you experience this panic, set thehttp_connector
on the Config passed into this function to fix it.