interface CfnApprovedOriginMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnApprovedOriginMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnApprovedOriginMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnApprovedOriginMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnApprovedOriginMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const cfnApprovedOriginMixinProps: connect.CfnApprovedOriginMixinProps = {
instanceId: 'instanceId',
origin: 'origin',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | IInstance | 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 | IInstance
(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