interface CfnAgentSpaceProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.SecurityAgent.CfnAgentSpaceProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssecurityagent#CfnAgentSpaceProps |
Java | software.amazon.awscdk.services.securityagent.CfnAgentSpaceProps |
Python | aws_cdk.aws_securityagent.CfnAgentSpaceProps |
TypeScript | aws-cdk-lib » aws_securityagent » CfnAgentSpaceProps |
Properties for defining a CfnAgentSpace.
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 cfnAgentSpaceProps: securityagent.CfnAgentSpaceProps = {
name: 'name',
// the properties below are optional
awsResources: {
iamRoles: ['iamRoles'],
lambdaFunctionArns: ['lambdaFunctionArns'],
logGroups: ['logGroups'],
s3Buckets: ['s3Buckets'],
secretArns: ['secretArns'],
vpcs: [{
securityGroupArns: ['securityGroupArns'],
subnetArns: ['subnetArns'],
vpcArn: 'vpcArn',
}],
},
codeReviewSettings: {
controlsScanning: false,
generalPurposeScanning: false,
},
description: 'description',
integratedResources: [{
integration: 'integration',
}],
kmsKeyId: 'kmsKeyId',
tags: [{
key: 'key',
value: 'value',
}],
targetDomainIds: ['targetDomainIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Name of the agent space. |
| aws | IResolvable | AWSResources | AWS resource configuration. |
| code | IResolvable | Code | Details of code review settings. |
| description? | string | Description of the agent space. |
| integrated | IResolvable | (IResolvable | Integrated)[] | Integrated Resources configuration. |
| kms | string | Identifier of the KMS key used to encrypt data. |
| tags? | Cfn[] | Tags for the agent space. |
| target | string[] | List of target domain identifiers registered with the agent space. |
name
Type:
string
Name of the agent space.
awsResources?
Type:
IResolvable | AWSResources
(optional)
AWS resource configuration.
codeReviewSettings?
Type:
IResolvable | Code
(optional)
Details of code review settings.
description?
Type:
string
(optional)
Description of the agent space.
integratedResources?
Type:
IResolvable | (IResolvable | Integrated)[]
(optional)
Integrated Resources configuration.
kmsKeyId?
Type:
string
(optional)
Identifier of the KMS key used to encrypt data.
Can be a key ID, key ARN, alias name, or alias ARN. If not specified, an AWS managed key is used.
tags?
Type:
Cfn[]
(optional)
Tags for the agent space.
targetDomainIds?
Type:
string[]
(optional)
List of target domain identifiers registered with the agent space.

.NET
Go
Java
Python
TypeScript