interface CfnApprovedOriginMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnApprovedOriginMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnApprovedOriginMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnApprovedOriginMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnApprovedOriginMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnApprovedOriginMixinProps |
Properties for CfnApprovedOriginPropsMixin.
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 cfnApprovedOriginMixinProps: connect_mixins.CfnApprovedOriginMixinProps = {
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
(optional)
The Amazon Resource Name (ARN) of the instance.
Minimum : 1
Maximum : 100
origin?
Type:
string
(optional)
Domain name to be added to the allow-list of the instance.
Maximum : 267

.NET
Go
Java
Python
TypeScript