Class BrowserProfileReference
A reference to a BrowserProfile resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.BedrockAgentCore
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BrowserProfileReference : IBrowserProfileReference
Syntax (vb)
Public Class BrowserProfileReference Implements IBrowserProfileReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.BedrockAgentCore;
var browserProfileReference = new BrowserProfileReference {
ProfileArn = "profileArn",
ProfileId = "profileId"
};
Synopsis
Constructors
| BrowserProfileReference() | A reference to a BrowserProfile resource. |
Properties
| ProfileArn | The ARN of the BrowserProfile resource. |
| ProfileId | The ProfileId of the BrowserProfile resource. |
Constructors
BrowserProfileReference()
A reference to a BrowserProfile resource.
public BrowserProfileReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.BedrockAgentCore;
var browserProfileReference = new BrowserProfileReference {
ProfileArn = "profileArn",
ProfileId = "profileId"
};
Properties
ProfileArn
The ARN of the BrowserProfile resource.
public string ProfileArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
ProfileId
The ProfileId of the BrowserProfile resource.
public string ProfileId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated