Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentSpaceReference ¶
type AgentSpaceReference struct {
// The ARN of the AgentSpace resource.
AgentSpaceArn *string `field:"required" json:"agentSpaceArn" yaml:"agentSpaceArn"`
// The AgentSpaceId of the AgentSpace resource.
AgentSpaceId *string `field:"required" json:"agentSpaceId" yaml:"agentSpaceId"`
}
A reference to a AgentSpace resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
agentSpaceReference := &AgentSpaceReference{
AgentSpaceArn: jsii.String("agentSpaceArn"),
AgentSpaceId: jsii.String("agentSpaceId"),
}
type AssociationReference ¶
type AssociationReference struct {
// The AgentSpaceId of the Association resource.
AgentSpaceId *string `field:"required" json:"agentSpaceId" yaml:"agentSpaceId"`
// The AssociationId of the Association resource.
AssociationId *string `field:"required" json:"associationId" yaml:"associationId"`
}
A reference to a Association resource.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"
associationReference := &AssociationReference{
AgentSpaceId: jsii.String("agentSpaceId"),
AssociationId: jsii.String("associationId"),
}
type IAgentSpaceRef ¶
type IAgentSpaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AgentSpace resource.
// Experimental.
AgentSpaceRef() *AgentSpaceReference
}
Indicates that this resource can be referenced as a AgentSpace. Experimental.
type IAssociationRef ¶
type IAssociationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Association resource.
// Experimental.
AssociationRef() *AssociationReference
}
Indicates that this resource can be referenced as a Association. Experimental.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.