Show / Hide Table of Contents

Class BrowserProfileReference

A reference to a BrowserProfile resource.

Inheritance
object
BrowserProfileReference
Implements
IBrowserProfileReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

ProfileId

The ProfileId of the BrowserProfile resource.

public string ProfileId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IBrowserProfileReference
Back to top Generated by DocFX