WebExperienceReference

class aws_cdk.aws_qbusiness.WebExperienceReference(*, application_id, web_experience_arn, web_experience_id)

Bases: object

A reference to a WebExperience resource.

Parameters:
  • application_id (str) – The ApplicationId of the WebExperience resource.

  • web_experience_arn (str) – The ARN of the WebExperience resource.

  • web_experience_id (str) – The WebExperienceId of the WebExperience resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_qbusiness as qbusiness

web_experience_reference = qbusiness.WebExperienceReference(
    application_id="applicationId",
    web_experience_arn="webExperienceArn",
    web_experience_id="webExperienceId"
)

Attributes

application_id

The ApplicationId of the WebExperience resource.

web_experience_arn

The ARN of the WebExperience resource.

web_experience_id

The WebExperienceId of the WebExperience resource.