public class CreateAliasRequest extends AmazonWebServiceRequest implements Serializable
Creates a display name for a customer managed customer master key (CMK). You can use an alias to identify a CMK in selected operations, such as Encrypt and GenerateDataKey.
Each CMK can have multiple aliases, but each alias points to only one CMK. The alias name must be unique in the AWS account and region. To simplify code that runs in multiple regions, use the same alias name, but point it to a different CMK in each region.
Because an alias is not a property of a CMK, you can delete and change the aliases of a CMK without affecting the CMK. Also, aliases do not appear in the response from the DescribeKey operation. To get the aliases of all CMKs, use the ListAliases operation.
The alias name must begin with alias/ followed by a name, such
as alias/ExampleAlias. It can contain only alphanumeric
characters, forward slashes (/), underscores (_), and dashes (-). The alias
name cannot begin with alias/aws/. The alias/aws/
prefix is reserved for AWS managed CMKs.
The alias and the CMK it is mapped to must be in the same AWS account and the same region. You cannot perform this operation on an alias in a different AWS account.
To map an existing alias to a different CMK, call UpdateAlias.
The result of this operation varies with the key state of the CMK. For details, see How Key State Affects Use of a Customer Master Key in the AWS Key Management Service Developer Guide.
| Constructor and Description |
|---|
CreateAliasRequest() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
String |
getAliasName()
Specifies the alias name.
|
String |
getTargetKeyId()
Identifies the CMK to which the alias refers.
|
int |
hashCode() |
void |
setAliasName(String aliasName)
Specifies the alias name.
|
void |
setTargetKeyId(String targetKeyId)
Identifies the CMK to which the alias refers.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateAliasRequest |
withAliasName(String aliasName)
Specifies the alias name.
|
CreateAliasRequest |
withTargetKeyId(String targetKeyId)
Identifies the CMK to which the alias refers.
|
clone, copyBaseTo, getCloneRoot, getCloneSource, getGeneralProgressListener, getRequestClientOptions, getRequestCredentials, getRequestMetricCollector, setGeneralProgressListener, setRequestCredentials, setRequestMetricCollector, withGeneralProgressListener, withRequestMetricCollectorpublic String getAliasName()
Specifies the alias name. This value must begin with alias/
followed by a name, such as alias/ExampleAlias. The alias
name cannot begin with alias/aws/. The
alias/aws/ prefix is reserved for AWS managed CMKs.
Constraints:
Length: 1 - 256
Pattern: ^[a-zA-Z0-9:/_-]+$
Specifies the alias name. This value must begin with
alias/ followed by a name, such as
alias/ExampleAlias. The alias name cannot begin with
alias/aws/. The alias/aws/ prefix is
reserved for AWS managed CMKs.
public void setAliasName(String aliasName)
Specifies the alias name. This value must begin with alias/
followed by a name, such as alias/ExampleAlias. The alias
name cannot begin with alias/aws/. The
alias/aws/ prefix is reserved for AWS managed CMKs.
Constraints:
Length: 1 - 256
Pattern: ^[a-zA-Z0-9:/_-]+$
aliasName -
Specifies the alias name. This value must begin with
alias/ followed by a name, such as
alias/ExampleAlias. The alias name cannot begin
with alias/aws/. The alias/aws/
prefix is reserved for AWS managed CMKs.
public CreateAliasRequest withAliasName(String aliasName)
Specifies the alias name. This value must begin with alias/
followed by a name, such as alias/ExampleAlias. The alias
name cannot begin with alias/aws/. The
alias/aws/ prefix is reserved for AWS managed CMKs.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 256
Pattern: ^[a-zA-Z0-9:/_-]+$
aliasName -
Specifies the alias name. This value must begin with
alias/ followed by a name, such as
alias/ExampleAlias. The alias name cannot begin
with alias/aws/. The alias/aws/
prefix is reserved for AWS managed CMKs.
public String getTargetKeyId()
Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
Constraints:
Length: 1 - 2048
Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
public void setTargetKeyId(String targetKeyId)
Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
Constraints:
Length: 1 - 2048
targetKeyId - Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
public CreateAliasRequest withTargetKeyId(String targetKeyId)
Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 2048
targetKeyId - Identifies the CMK to which the alias refers. Specify the key ID or the Amazon Resource Name (ARN) of the CMK. You cannot specify another alias. For help finding the key ID and ARN, see Finding the Key ID and ARN in the AWS Key Management Service Developer Guide.
public String toString()
toString in class ObjectObject.toString()Copyright © 2019. All rights reserved.