interface IntegrationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CustomerProfiles.IntegrationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscustomerprofiles#IntegrationReference |
Java | software.amazon.awscdk.interfaces.customerprofiles.IntegrationReference |
Python | aws_cdk.interfaces.aws_customerprofiles.IntegrationReference |
TypeScript | aws-cdk-lib » interfaces » aws_customerprofiles » IntegrationReference |
A reference to a Integration resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as interfaces_customerprofiles } from 'aws-cdk-lib/interfaces';
const integrationReference: interfaces_customerprofiles.IntegrationReference = {
domainName: 'domainName',
uri: 'uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainName of the Integration resource. |
| uri | string | The Uri of the Integration resource. |
domainName
Type:
string
The DomainName of the Integration resource.
uri
Type:
string
The Uri of the Integration resource.

.NET
Go
Java
Python
TypeScript