interface PortalReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.IoTSiteWise.PortalReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsiotsitewise#PortalReference |
Java | software.amazon.awscdk.interfaces.iotsitewise.PortalReference |
Python | aws_cdk.interfaces.aws_iotsitewise.PortalReference |
TypeScript | aws-cdk-lib » interfaces » aws_iotsitewise » PortalReference |
A reference to a Portal resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as interfaces_aws_iotsitewise } from 'aws-cdk-lib/interfaces';
const portalReference: interfaces_aws_iotsitewise.PortalReference = {
portalArn: 'portalArn',
portalId: 'portalId',
};
Properties
| Name | Type | Description |
|---|---|---|
| portal | string | The ARN of the Portal resource. |
| portal | string | The PortalId of the Portal resource. |
portalArn
Type:
string
The ARN of the Portal resource.
portalId
Type:
string
The PortalId of the Portal resource.

.NET
Go
Java
Python
TypeScript