interface AgentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.AgentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#AgentReference |
Java | software.amazon.awscdk.interfaces.quicksight.AgentReference |
Python | aws_cdk.interfaces.aws_quicksight.AgentReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » AgentReference |
A reference to a Agent resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_quicksight } from 'aws-cdk-lib/interfaces';
const agentReference: interfaces_quicksight.AgentReference = {
agentArn: 'agentArn',
agentId: 'agentId',
awsAccountId: 'awsAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | The ARN of the Agent resource. |
| agent | string | The AgentId of the Agent resource. |
| aws | string | The AwsAccountId of the Agent resource. |
agentArn
Type:
string
The ARN of the Agent resource.
agentId
Type:
string
The AgentId of the Agent resource.
awsAccountId
Type:
string
The AwsAccountId of the Agent resource.

.NET
Go
Java
Python
TypeScript