Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AgentSpaceReference ¶
type AgentSpaceReference struct {
// 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{
AgentSpaceId: jsii.String("agentSpaceId"),
}
type ApplicationReference ¶
type ApplicationReference struct {
// The ApplicationId of the Application resource.
ApplicationId *string `field:"required" json:"applicationId" yaml:"applicationId"`
}
A reference to a Application 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"
applicationReference := &ApplicationReference{
ApplicationId: jsii.String("applicationId"),
}
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 IApplicationRef ¶
type IApplicationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Application resource.
// Experimental.
ApplicationRef() *ApplicationReference
}
Indicates that this resource can be referenced as a Application. Experimental.
type IPentestRef ¶
type IPentestRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Pentest resource.
// Experimental.
PentestRef() *PentestReference
}
Indicates that this resource can be referenced as a Pentest. Experimental.
type ITargetDomainRef ¶
type ITargetDomainRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TargetDomain resource.
// Experimental.
TargetDomainRef() *TargetDomainReference
}
Indicates that this resource can be referenced as a TargetDomain. Experimental.
type PentestReference ¶
type PentestReference struct {
// The AgentSpaceId of the Pentest resource.
AgentSpaceId *string `field:"required" json:"agentSpaceId" yaml:"agentSpaceId"`
// The PentestId of the Pentest resource.
PentestId *string `field:"required" json:"pentestId" yaml:"pentestId"`
}
A reference to a Pentest 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"
pentestReference := &PentestReference{
AgentSpaceId: jsii.String("agentSpaceId"),
PentestId: jsii.String("pentestId"),
}
type TargetDomainReference ¶
type TargetDomainReference struct {
// The TargetDomainId of the TargetDomain resource.
TargetDomainId *string `field:"required" json:"targetDomainId" yaml:"targetDomainId"`
}
A reference to a TargetDomain 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"
targetDomainReference := &TargetDomainReference{
TargetDomainId: jsii.String("targetDomainId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.