Class: Aws::EC2::Types::DescribeKeyPairsRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass DescribeKeyPairsRequest data as a hash:

{
  filters: [
    {
      name: "String",
      values: ["String"],
    },
  ],
  key_names: ["String"],
  dry_run: false,
}

Contains the parameters for DescribeKeyPairs.

Instance Attribute Summary collapse

Instance Attribute Details

#dry_runBoolean

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`.

Returns:

  • (Boolean)


7587
7588
7589
7590
7591
7592
# File 'lib/aws-sdk-ec2/types.rb', line 7587

class DescribeKeyPairsRequest < Struct.new(
  :filters,
  :key_names,
  :dry_run)
  include Aws::Structure
end

#filtersArray<Types::Filter>

One or more filters.

  • ‘fingerprint` - The fingerprint of the key pair.

  • ‘key-name` - The name of the key pair.

Returns:



7587
7588
7589
7590
7591
7592
# File 'lib/aws-sdk-ec2/types.rb', line 7587

class DescribeKeyPairsRequest < Struct.new(
  :filters,
  :key_names,
  :dry_run)
  include Aws::Structure
end

#key_namesArray<String>

One or more key pair names.

Default: Describes all your key pairs.

Returns:

  • (Array<String>)


7587
7588
7589
7590
7591
7592
# File 'lib/aws-sdk-ec2/types.rb', line 7587

class DescribeKeyPairsRequest < Struct.new(
  :filters,
  :key_names,
  :dry_run)
  include Aws::Structure
end