interface BrowserCustomReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.BedrockAgentCore.BrowserCustomReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsbedrockagentcore#BrowserCustomReference |
Java | software.amazon.awscdk.interfaces.bedrockagentcore.BrowserCustomReference |
Python | aws_cdk.interfaces.aws_bedrockagentcore.BrowserCustomReference |
TypeScript | aws-cdk-lib » interfaces » aws_bedrockagentcore » BrowserCustomReference |
A reference to a BrowserCustom resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as interfaces_bedrockagentcore } from 'aws-cdk-lib/interfaces';
const browserCustomReference: interfaces_bedrockagentcore.BrowserCustomReference = {
browserArn: 'browserArn',
browserId: 'browserId',
};
Properties
| Name | Type | Description |
|---|---|---|
| browser | string | The ARN of the BrowserCustom resource. |
| browser | string | The BrowserId of the BrowserCustom resource. |
browserArn
Type:
string
The ARN of the BrowserCustom resource.
browserId
Type:
string
The BrowserId of the BrowserCustom resource.

.NET
Go
Java
Python
TypeScript