interface ApplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnSecurityProfilePropsMixin.ApplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnSecurityProfilePropsMixin_ApplicationProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnSecurityProfilePropsMixin.ApplicationProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnSecurityProfilePropsMixin.ApplicationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnSecurityProfilePropsMixin » ApplicationProperty |
This API is in preview release for Amazon Connect and is subject to change.
A third-party application's metadata.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const applicationProperty: connect_mixins.CfnSecurityProfilePropsMixin.ApplicationProperty = {
applicationPermissions: ['applicationPermissions'],
namespace: 'namespace',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string[] | The permissions that the agent is granted on the application. |
| namespace? | string | Namespace of the application that you want to give access to. |
applicationPermissions?
Type:
string[]
(optional)
The permissions that the agent is granted on the application.
For third-party applications, only the ACCESS permission is supported. For MCP Servers, the permissions are tool Identifiers accepted by MCP Server.
namespace?
Type:
string
(optional)
Namespace of the application that you want to give access to.

.NET
Go
Java
Python
TypeScript