Show / Hide Table of Contents

Class GatewayTargetCommonProps

(experimental) Common properties for all Gateway Target types.

Inheritance
object
GatewayTargetCommonProps
Implements
IGatewayTargetCommonProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock.Agentcore.Alpha
Assembly: Amazon.CDK.AWS.Bedrock.Agentcore.Alpha.dll
Syntax (csharp)
public class GatewayTargetCommonProps : IGatewayTargetCommonProps
Syntax (vb)
Public Class GatewayTargetCommonProps Implements IGatewayTargetCommonProps
Remarks

Stability: Experimental

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.AWS.Bedrock.Agentcore.Alpha;

             var gatewayTargetCommonProps = new GatewayTargetCommonProps {
                 Description = "description",
                 GatewayTargetName = "gatewayTargetName"
             };

Synopsis

Constructors

GatewayTargetCommonProps()

(experimental) Common properties for all Gateway Target types.

Properties

Description

(experimental) Optional description for the gateway target The description can have up to 200 characters.

GatewayTargetName

(experimental) The name of the gateway target The name must be unique within the gateway Pattern: ^([0-9a-zA-Z][-]?){1,100}$.

Constructors

GatewayTargetCommonProps()

(experimental) Common properties for all Gateway Target types.

public GatewayTargetCommonProps()
Remarks

Stability: Experimental

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.AWS.Bedrock.Agentcore.Alpha;

             var gatewayTargetCommonProps = new GatewayTargetCommonProps {
                 Description = "description",
                 GatewayTargetName = "gatewayTargetName"
             };

Properties

Description

(experimental) Optional description for the gateway target The description can have up to 200 characters.

public string? Description { get; set; }
Property Value

string

Remarks

Default: - No description

Stability: Experimental

GatewayTargetName

(experimental) The name of the gateway target The name must be unique within the gateway Pattern: ^([0-9a-zA-Z][-]?){1,100}$.

public string? GatewayTargetName { get; set; }
Property Value

string

Remarks

Default: - auto generate

Stability: Experimental

Implements

IGatewayTargetCommonProps
Back to top Generated by DocFX