Class: Aws::EC2InstanceConnect::Types::SendSSHPublicKeyRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2InstanceConnect::Types::SendSSHPublicKeyRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2instanceconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#availability_zone ⇒ String
The Availability Zone in which the EC2 instance was launched.
-
#instance_id ⇒ String
The ID of the EC2 instance.
-
#instance_os_user ⇒ String
The OS user on the EC2 instance for whom the key can be used to authenticate.
-
#ssh_public_key ⇒ String
The public key material.
Instance Attribute Details
#availability_zone ⇒ String
The Availability Zone in which the EC2 instance was launched.
117 118 119 120 121 122 123 124 |
# File 'lib/aws-sdk-ec2instanceconnect/types.rb', line 117 class SendSSHPublicKeyRequest < Struct.new( :instance_id, :instance_os_user, :ssh_public_key, :availability_zone) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The ID of the EC2 instance.
117 118 119 120 121 122 123 124 |
# File 'lib/aws-sdk-ec2instanceconnect/types.rb', line 117 class SendSSHPublicKeyRequest < Struct.new( :instance_id, :instance_os_user, :ssh_public_key, :availability_zone) SENSITIVE = [] include Aws::Structure end |
#instance_os_user ⇒ String
The OS user on the EC2 instance for whom the key can be used to authenticate.
117 118 119 120 121 122 123 124 |
# File 'lib/aws-sdk-ec2instanceconnect/types.rb', line 117 class SendSSHPublicKeyRequest < Struct.new( :instance_id, :instance_os_user, :ssh_public_key, :availability_zone) SENSITIVE = [] include Aws::Structure end |
#ssh_public_key ⇒ String
The public key material. To use the public key, you must have the matching private key.
117 118 119 120 121 122 123 124 |
# File 'lib/aws-sdk-ec2instanceconnect/types.rb', line 117 class SendSSHPublicKeyRequest < Struct.new( :instance_id, :instance_os_user, :ssh_public_key, :availability_zone) SENSITIVE = [] include Aws::Structure end |