interface CfnApplicationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnApplicationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnApplicationProps |
Java | software.amazon.awscdk.services.securityagent.CfnApplicationProps |
Python | aws_cdk.aws_securityagent.CfnApplicationProps |
TypeScript | aws-cdk-lib » aws_securityagent » CfnApplicationProps |
Properties for defining a CfnApplication.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securityagent as securityagent } from 'aws-cdk-lib';
const cfnApplicationProps: securityagent.CfnApplicationProps = {
defaultKmsKeyId: 'defaultKmsKeyId',
idCConfiguration: {
idCApplicationArn: 'idCApplicationArn',
idCInstanceArn: 'idCInstanceArn',
},
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| default | string | Identifier of a KMS key. |
| id | IResolvable | Id | |
| role | string | |
| tags? | Cfn[] | Tags for the application. |
defaultKmsKeyId?
Type:
string
(optional)
Identifier of a KMS key.
Can be a key ID, key ARN, alias name, or alias ARN.
idCConfiguration?
Type:
IResolvable | Id
(optional)
roleArn?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)
Tags for the application.

.NET
Go
Java
Python
TypeScript