interface ApplicationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnSecurityProfilePropsMixin.ApplicationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnSecurityProfilePropsMixin_ApplicationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnSecurityProfilePropsMixin.ApplicationProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnSecurityProfilePropsMixin.ApplicationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const applicationProperty: connect.CfnSecurityProfilePropsMixin.ApplicationProperty = {
applicationPermissions: ['applicationPermissions'],
namespace: 'namespace',
type: 'type',
};
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. |
| type? | string | The type of the application. |
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.
type?
Type:
string
(optional)
The type of the application.

.NET
Go
Java
Python
TypeScript