Struct aws_sdk_ec2::input::CreateKeyPairInput [−][src]
#[non_exhaustive]pub struct CreateKeyPairInput {
pub key_name: Option<String>,
pub dry_run: Option<bool>,
pub key_type: Option<KeyType>,
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.key_name: Option<String>
A unique name for the key pair.
Constraints: Up to 255 ASCII characters
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_type: Option<KeyType>
The type of key pair. Note that ED25519 keys are not supported for Windows instances, EC2 Instance Connect, and EC2 Serial Console.
Default: rsa
tag_specifications: Option<Vec<TagSpecification>>
The tags to apply to the new key pair.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateKeyPair, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateKeyPair, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateKeyPair
>
Creates a new builder-style object to manufacture CreateKeyPairInput
A unique name for the key pair.
Constraints: Up to 255 ASCII characters
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 type of key pair. Note that ED25519 keys are not supported for Windows instances, EC2 Instance Connect, and EC2 Serial Console.
Default: rsa
The tags to apply to the new 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 CreateKeyPairInput
impl Send for CreateKeyPairInput
impl Sync for CreateKeyPairInput
impl Unpin for CreateKeyPairInput
impl UnwindSafe for CreateKeyPairInput
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