Interface IAlias.Jsii$Default
- All Superinterfaces:
IAlias
,software.constructs.IConstruct
,software.constructs.IConstruct.Jsii$Default
,software.constructs.IDependable
,software.constructs.IDependable.Jsii$Default
,IKey
,IKey.Jsii$Default
,IResource
,IResource.Jsii$Default
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IAlias.Jsii$Proxy
- Enclosing interface:
IAlias
IAlias
.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.kms.IAlias
IAlias.Jsii$Default, IAlias.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default, software.constructs.IConstruct.Jsii$Proxy
Nested classes/interfaces inherited from interface software.constructs.IDependable
software.constructs.IDependable.Jsii$Default, software.constructs.IDependable.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.services.kms.IKey
IKey.Jsii$Default, IKey.Jsii$Proxy
Nested classes/interfaces inherited from interface software.amazon.awscdk.IResource
IResource.Jsii$Default, IResource.Jsii$Proxy
-
Method Summary
Modifier and TypeMethodDescriptiondefault Alias
Defines a new alias for the key.default AddToResourcePolicyResult
addToResourcePolicy
(PolicyStatement statement, Boolean allowNoOp) Adds a statement to the KMS key resource policy.default void
applyRemovalPolicy
(RemovalPolicy policy) Apply the given removal policy to this resource.default String
The name of the alias.default IKey
The Key to which the Alias refers.default ResourceEnvironment
getEnv()
The environment this resource belongs to.default String
The ARN of the key.default String
getKeyId()
The ID of the key (the part that looks something like: 1234abcd-12ab-34cd-56ef-1234567890ab).default software.constructs.Node
getNode()
The tree node.default Stack
getStack()
The stack in which this resource is defined.default Grant
grant
(IGrantable grantee, @NotNull String... actions) Grant the indicated permissions on this key to the given principal.default Grant
grantDecrypt
(IGrantable grantee) Grant decryption permissions using this key to the given principal.default Grant
grantEncrypt
(IGrantable grantee) Grant encryption permissions using this key to the given principal.default Grant
grantEncryptDecrypt
(IGrantable grantee) Grant encryption and decryption permissions using this key to the given principal.default Grant
grantGenerateMac
(IGrantable grantee) Grant permissions to generating MACs to the given principal.default Grant
grantVerifyMac
(IGrantable grantee) Grant permissions to verifying MACs to the given principal.Methods inherited from interface software.amazon.awscdk.services.kms.IKey
addToResourcePolicy
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNode
@Stability(Stable) @NotNull default software.constructs.Node getNode()The tree node.- Specified by:
getNode
in interfacesoftware.constructs.IConstruct
- Specified by:
getNode
in interfacesoftware.constructs.IConstruct.Jsii$Default
- Specified by:
getNode
in interfaceIKey.Jsii$Default
- Specified by:
getNode
in interfaceIResource.Jsii$Default
-
getEnv
The environment this resource belongs to.For resources that are created and managed by the CDK (generally, those created by creating new class instances like Role, Bucket, etc.), this is always the same as the environment of the stack they belong to; however, for imported resources (those obtained from static methods like fromRoleArn, fromBucketName, etc.), that might be different than the stack they were imported into.
- Specified by:
getEnv
in interfaceIKey.Jsii$Default
- Specified by:
getEnv
in interfaceIResource
- Specified by:
getEnv
in interfaceIResource.Jsii$Default
-
getStack
The stack in which this resource is defined.- Specified by:
getStack
in interfaceIKey.Jsii$Default
- Specified by:
getStack
in interfaceIResource
- Specified by:
getStack
in interfaceIResource.Jsii$Default
-
getKeyArn
The ARN of the key.- Specified by:
getKeyArn
in interfaceIKey
- Specified by:
getKeyArn
in interfaceIKey.Jsii$Default
-
getKeyId
The ID of the key (the part that looks something like: 1234abcd-12ab-34cd-56ef-1234567890ab).- Specified by:
getKeyId
in interfaceIKey
- Specified by:
getKeyId
in interfaceIKey.Jsii$Default
-
getAliasName
The name of the alias.- Specified by:
getAliasName
in interfaceIAlias
-
getAliasTargetKey
The Key to which the Alias refers.- Specified by:
getAliasTargetKey
in interfaceIAlias
-
applyRemovalPolicy
Apply the given removal policy to this resource.The Removal Policy controls what happens to this resource when it stops being managed by CloudFormation, either because you've removed it from the CDK application or because you've made a change that requires the resource to be replaced.
The resource can be deleted (
RemovalPolicy.DESTROY
), or left in your AWS account for data recovery and cleanup later (RemovalPolicy.RETAIN
).- Specified by:
applyRemovalPolicy
in interfaceIKey.Jsii$Default
- Specified by:
applyRemovalPolicy
in interfaceIResource
- Specified by:
applyRemovalPolicy
in interfaceIResource.Jsii$Default
- Parameters:
policy
- This parameter is required.
-
addAlias
Defines a new alias for the key.- Specified by:
addAlias
in interfaceIKey
- Specified by:
addAlias
in interfaceIKey.Jsii$Default
- Parameters:
alias
- This parameter is required.
-
addToResourcePolicy
@Stability(Stable) @NotNull default AddToResourcePolicyResult addToResourcePolicy(@NotNull PolicyStatement statement, @Nullable Boolean allowNoOp) Adds a statement to the KMS key resource policy.- Specified by:
addToResourcePolicy
in interfaceIKey
- Specified by:
addToResourcePolicy
in interfaceIKey.Jsii$Default
- Parameters:
statement
- The policy statement to add. This parameter is required.allowNoOp
- If this is set tofalse
and there is no policy defined (i.e. external key), the operation will fail. Otherwise, it will no-op.
-
grant
@Stability(Stable) @NotNull default Grant grant(@NotNull IGrantable grantee, @NotNull @NotNull String... actions) Grant the indicated permissions on this key to the given principal.- Specified by:
grant
in interfaceIKey
- Specified by:
grant
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.actions
- This parameter is required.
-
grantDecrypt
Grant decryption permissions using this key to the given principal.- Specified by:
grantDecrypt
in interfaceIKey
- Specified by:
grantDecrypt
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.
-
grantEncrypt
Grant encryption permissions using this key to the given principal.- Specified by:
grantEncrypt
in interfaceIKey
- Specified by:
grantEncrypt
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.
-
grantEncryptDecrypt
Grant encryption and decryption permissions using this key to the given principal.- Specified by:
grantEncryptDecrypt
in interfaceIKey
- Specified by:
grantEncryptDecrypt
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.
-
grantGenerateMac
Grant permissions to generating MACs to the given principal.- Specified by:
grantGenerateMac
in interfaceIKey
- Specified by:
grantGenerateMac
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.
-
grantVerifyMac
Grant permissions to verifying MACs to the given principal.- Specified by:
grantVerifyMac
in interfaceIKey
- Specified by:
grantVerifyMac
in interfaceIKey.Jsii$Default
- Parameters:
grantee
- This parameter is required.
-