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,
}

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)


12458
12459
12460
12461
12462
12463
# File 'lib/aws-sdk-ec2/types.rb', line 12458

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:



12458
12459
12460
12461
12462
12463
# File 'lib/aws-sdk-ec2/types.rb', line 12458

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>)


12458
12459
12460
12461
12462
12463
# File 'lib/aws-sdk-ec2/types.rb', line 12458

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