interface ApprovedOriginReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.ApprovedOriginReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#ApprovedOriginReference |
Java | software.amazon.awscdk.services.connect.ApprovedOriginReference |
Python | aws_cdk.aws_connect.ApprovedOriginReference |
TypeScript | aws-cdk-lib » aws_connect » ApprovedOriginReference |
A reference to a ApprovedOrigin resource.
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 approvedOriginReference: connect.ApprovedOriginReference = {
instanceId: 'instanceId',
origin: 'origin',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The InstanceId of the ApprovedOrigin resource. |
| origin | string | The Origin of the ApprovedOrigin resource. |
instanceId
Type:
string
The InstanceId of the ApprovedOrigin resource.
origin
Type:
string
The Origin of the ApprovedOrigin resource.

.NET
Go
Java
Python
TypeScript