interface WebExperienceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_qbusiness.WebExperienceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsqbusiness#WebExperienceReference |
Java | software.amazon.awscdk.services.qbusiness.WebExperienceReference |
Python | aws_cdk.aws_qbusiness.WebExperienceReference |
TypeScript | aws-cdk-lib » aws_qbusiness » WebExperienceReference |
A reference to a WebExperience resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_qbusiness as qbusiness } from 'aws-cdk-lib';
const webExperienceReference: qbusiness.WebExperienceReference = {
applicationId: 'applicationId',
webExperienceArn: 'webExperienceArn',
webExperienceId: 'webExperienceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The ApplicationId of the WebExperience resource. |
| web | string | The ARN of the WebExperience resource. |
| web | string | The WebExperienceId of the WebExperience resource. |
applicationId
Type:
string
The ApplicationId of the WebExperience resource.
webExperienceArn
Type:
string
The ARN of the WebExperience resource.
webExperienceId
Type:
string
The WebExperienceId of the WebExperience resource.

.NET
Go
Java
Python
TypeScript