Struct aws_sdk_ec2::input::ImportKeyPairInput [−][src]
#[non_exhaustive]pub struct ImportKeyPairInput {
pub dry_run: Option<bool>,
pub key_name: Option<String>,
pub public_key_material: Option<Blob>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}
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.dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
key_name: Option<String>
A unique name for the key pair.
public_key_material: Option<Blob>
The public key. For API calls, the text must be base64-encoded. For command line tools, base64 encoding is performed for you.
tag_specifications: Option<Vec<TagSpecification>>
The tags to apply to the imported key pair.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportKeyPair, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ImportKeyPair, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ImportKeyPair
>
Creates a new builder-style object to manufacture ImportKeyPairInput
Checks whether you have the required permissions for the action, without actually making the request,
and provides an error response. If you have the required permissions, the error response is DryRunOperation
.
Otherwise, it is UnauthorizedOperation
.
The public key. For API calls, the text must be base64-encoded. For command line tools, base64 encoding is performed for you.
The tags to apply to the imported key pair.
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 ImportKeyPairInput
impl Send for ImportKeyPairInput
impl Sync for ImportKeyPairInput
impl Unpin for ImportKeyPairInput
impl UnwindSafe for ImportKeyPairInput
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