Show / Hide Table of Contents

Class CfnAssociationPropsMixin.MCPServerConfigurationProperty

Configuration for MCP (Model Context Protocol) server integration.

Inheritance
object
CfnAssociationPropsMixin.MCPServerConfigurationProperty
Implements
CfnAssociationPropsMixin.IMCPServerConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.DevOpsAgent.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAssociationPropsMixin.MCPServerConfigurationProperty : CfnAssociationPropsMixin.IMCPServerConfigurationProperty
Syntax (vb)
Public Class CfnAssociationPropsMixin.MCPServerConfigurationProperty Implements CfnAssociationPropsMixin.IMCPServerConfigurationProperty
Remarks

Defines the server name, endpoint URL, available tools, optional description, and webhook update settings for custom MCP servers.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html

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.Mixins.Preview.AWS.DevOpsAgent.Mixins;

             var mCPServerConfigurationProperty = new MCPServerConfigurationProperty {
                 Description = "description",
                 EnableWebhookUpdates = false,
                 Endpoint = "endpoint",
                 Name = "name",
                 Tools = new [] { "tools" }
             };

Synopsis

Constructors

MCPServerConfigurationProperty()

Configuration for MCP (Model Context Protocol) server integration.

Properties

Description

The description of the MCP server.

EnableWebhookUpdates

When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.

Endpoint

MCP server endpoint URL.

Name

The name of the MCP server.

Tools

List of MCP tools that can be used with the association.

Constructors

MCPServerConfigurationProperty()

Configuration for MCP (Model Context Protocol) server integration.

public MCPServerConfigurationProperty()
Remarks

Defines the server name, endpoint URL, available tools, optional description, and webhook update settings for custom MCP servers.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html

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.Mixins.Preview.AWS.DevOpsAgent.Mixins;

             var mCPServerConfigurationProperty = new MCPServerConfigurationProperty {
                 Description = "description",
                 EnableWebhookUpdates = false,
                 Endpoint = "endpoint",
                 Name = "name",
                 Tools = new [] { "tools" }
             };

Properties

Description

The description of the MCP server.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-description

EnableWebhookUpdates

When set to true, enables the Agent Space to create and update webhooks for receiving notifications and events from the service.

public object? EnableWebhookUpdates { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-enablewebhookupdates

Type union: either bool or IResolvable

Endpoint

MCP server endpoint URL.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-endpoint

Name

The name of the MCP server.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-name

Tools

List of MCP tools that can be used with the association.

public string[]? Tools { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-association-mcpserverconfiguration.html#cfn-devopsagent-association-mcpserverconfiguration-tools

Implements

CfnAssociationPropsMixin.IMCPServerConfigurationProperty
Back to top Generated by DocFX