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.
Examples
Constructing a client and invoking an operation
// create a shared configuration. This can be used & shared between multiple service clients.
let shared_config = aws_config::load_from_env().await;
let client = aws_sdk_ec2instanceconnect::Client::new(&shared_config);
// invoke an operation
/* let rsp = client
.<operation_name>().
.<param>("some value")
.send().await; */
Constructing a client with custom configuration
use aws_config::RetryConfig;
let shared_config = aws_config::load_from_env().await;
let config = aws_sdk_ec2instanceconnect::config::Builder::from(&shared_config)
.retry_config(RetryConfig::disabled())
.build();
let client = aws_sdk_ec2instanceconnect::Client::from_conf(config);
Implementations
sourceimpl 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.
sourceimpl Client
impl Client
sourcepub fn send_serial_console_ssh_public_key(
&self
) -> SendSerialConsoleSSHPublicKey
pub fn send_serial_console_ssh_public_key(
&self
) -> SendSerialConsoleSSHPublicKey
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>
sourcepub fn send_ssh_public_key(&self) -> SendSSHPublicKey
pub fn send_ssh_public_key(&self) -> SendSSHPublicKey
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>
sourceimpl Client
impl Client
sourcepub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
pub fn from_conf_conn<C, E>(conf: Config, conn: C) -> Self where
C: SmithyConnector<Error = E> + Send + 'static,
E: Into<ConnectorError>,
Creates a client with the given service config and connector override.
Trait Implementations
sourceimpl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
impl From<Client<DynConnector, DynMiddleware<DynConnector>, Standard>> for Client
sourcefn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
fn from(client: Client<DynConnector, DynMiddleware<DynConnector>>) -> Self
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more