Class: AWSCDK::DevOpsAgent::CfnAssociation::MCPServerSigV4ConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
dev_ops_agent/cfn_association.rb

Overview

SigV4-authenticated MCP server configuration.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tools:) ⇒ MCPServerSigV4ConfigurationProperty

Returns a new instance of MCPServerSigV4ConfigurationProperty.

Parameters:

  • tools (Array<String>)

    List of MCP tools available for the association.



1220
1221
1222
1223
# File 'dev_ops_agent/cfn_association.rb', line 1220

def initialize(tools:)
  @tools = tools
  Jsii::Type.check_type(@tools, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "tools")
end

Instance Attribute Details

#toolsArray<String> (readonly)

List of MCP tools available for the association.



1229
1230
1231
# File 'dev_ops_agent/cfn_association.rb', line 1229

def tools
  @tools
end

Class Method Details

.jsii_propertiesObject



1231
1232
1233
1234
1235
# File 'dev_ops_agent/cfn_association.rb', line 1231

def self.jsii_properties
  {
    :tools => "tools",
  }
end

Instance Method Details

#to_jsiiObject



1237
1238
1239
1240
1241
1242
1243
# File 'dev_ops_agent/cfn_association.rb', line 1237

def to_jsii
  result = {}
  result.merge!({
    "tools" => @tools,
  })
  result.compact
end