interface CfnAgentSpaceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityAgent.CfnAgentSpaceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecurityagent#CfnAgentSpaceMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.securityagent.CfnAgentSpaceMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_securityagent.CfnAgentSpaceMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securityagent » CfnAgentSpaceMixinProps |
Properties for CfnAgentSpacePropsMixin.
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/cfn-property-mixins';
const cfnAgentSpaceMixinProps: securityagent.CfnAgentSpaceMixinProps = {
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',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
targetDomainIds: ['targetDomainIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| name? | string | Name of the agent space. |
| tags? | Cfn[] | Tags for the agent space. |
| target | string[] | List of target domain identifiers registered with 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.
name?
Type:
string
(optional)
Name of the agent space.
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