interface CfnApprovedOriginProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnApprovedOriginProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnApprovedOriginProps |
Java | software.amazon.awscdk.services.connect.CfnApprovedOriginProps |
Python | aws_cdk.aws_connect.CfnApprovedOriginProps |
TypeScript | aws-cdk-lib » aws_connect » CfnApprovedOriginProps |
Properties for defining a CfnApprovedOrigin.
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-lib';
const cfnApprovedOriginProps: connect.CfnApprovedOriginProps = {
instanceId: 'instanceId',
origin: 'origin',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Amazon Resource Name (ARN) of the instance. |
| origin | string | Domain name to be added to the allow-list of the instance. |
instanceId
Type:
string
The Amazon Resource Name (ARN) of the instance.
Minimum : 1
Maximum : 100
origin
Type:
string
Domain name to be added to the allow-list of the instance.
Maximum : 267

.NET
Go
Java
Python
TypeScript