paws.security.identity (version 0.1.0)

kms_list_aliases: Gets a list of all aliases in the caller's AWS account and region

Description

Gets a list of all aliases in the caller's AWS account and region. You cannot list aliases in other accounts. For more information about aliases, see CreateAlias.

Usage

kms_list_aliases(KeyId, Limit, Marker)

Arguments

KeyId

Lists only aliases that refer to the specified CMK. The value of this parameter can be the ID or Amazon Resource Name (ARN) of a CMK in the caller's account and region. You cannot use an alias name or alias ARN in this value.

This parameter is optional. If you omit it, ListAliases returns all aliases in the account and region.

Limit

Use this parameter to specify the maximum number of items to return. When this value is present, AWS KMS does not return more than the specified number of items, but it might return fewer.

This value is optional. If you include a value, it must be between 1 and 100, inclusive. If you do not include a value, it defaults to 50.

Marker

Use this parameter in a subsequent request after you receive a response with truncated results. Set it to the value of NextMarker from the truncated response you just received.

Request syntax

svc$list_aliases(
  KeyId = "string",
  Limit = 123,
  Marker = "string"
)

Details

By default, the ListAliases command returns all aliases in the account and region. To get only the aliases that point to a particular customer master key (CMK), use the KeyId parameter.

The ListAliases response might include several aliases have no TargetKeyId field. These are predefined aliases that AWS has created but has not yet associated with a CMK. Aliases that AWS creates in your account, including predefined aliases, do not count against your AWS KMS aliases limit.

Examples

Run this code
# NOT RUN {
# The following example lists aliases.
# }
# NOT RUN {
svc$list_aliases()
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace