AgentReference

class aws_cdk.interfaces.aws_quicksight.AgentReference(*, agent_arn, agent_id, aws_account_id)

Bases: object

A reference to a Agent resource.

Parameters:
  • agent_arn (str) – The ARN of the Agent resource.

  • agent_id (str) – The AgentId of the Agent resource.

  • aws_account_id (str) – The AwsAccountId of the Agent 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.interfaces import aws_quicksight as interfaces_quicksight

agent_reference = interfaces_quicksight.AgentReference(
    agent_arn="agentArn",
    agent_id="agentId",
    aws_account_id="awsAccountId"
)

Attributes

agent_arn

The ARN of the Agent resource.

agent_id

The AgentId of the Agent resource.

aws_account_id

The AwsAccountId of the Agent resource.