Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AllowListReference ¶
type AllowListReference struct {
// The ARN of the AllowList resource.
AllowListArn *string `field:"required" json:"allowListArn" yaml:"allowListArn"`
// The Id of the AllowList resource.
AllowListId *string `field:"required" json:"allowListId" yaml:"allowListId"`
}
A reference to a AllowList 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"
allowListReference := &AllowListReference{
AllowListArn: jsii.String("allowListArn"),
AllowListId: jsii.String("allowListId"),
}
type CustomDataIdentifierReference ¶
type CustomDataIdentifierReference struct {
// The ARN of the CustomDataIdentifier resource.
CustomDataIdentifierArn *string `field:"required" json:"customDataIdentifierArn" yaml:"customDataIdentifierArn"`
// The Id of the CustomDataIdentifier resource.
CustomDataIdentifierId *string `field:"required" json:"customDataIdentifierId" yaml:"customDataIdentifierId"`
}
A reference to a CustomDataIdentifier 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"
customDataIdentifierReference := &CustomDataIdentifierReference{
CustomDataIdentifierArn: jsii.String("customDataIdentifierArn"),
CustomDataIdentifierId: jsii.String("customDataIdentifierId"),
}
type FindingsFilterReference ¶
type FindingsFilterReference struct {
// The ARN of the FindingsFilter resource.
FindingsFilterArn *string `field:"required" json:"findingsFilterArn" yaml:"findingsFilterArn"`
// The Id of the FindingsFilter resource.
FindingsFilterId *string `field:"required" json:"findingsFilterId" yaml:"findingsFilterId"`
}
A reference to a FindingsFilter 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"
findingsFilterReference := &FindingsFilterReference{
FindingsFilterArn: jsii.String("findingsFilterArn"),
FindingsFilterId: jsii.String("findingsFilterId"),
}
type IAllowListRef ¶
type IAllowListRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a AllowList resource.
// Experimental.
AllowListRef() *AllowListReference
}
Indicates that this resource can be referenced as a AllowList. Experimental.
type ICustomDataIdentifierRef ¶
type ICustomDataIdentifierRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CustomDataIdentifier resource.
// Experimental.
CustomDataIdentifierRef() *CustomDataIdentifierReference
}
Indicates that this resource can be referenced as a CustomDataIdentifier. Experimental.
type IFindingsFilterRef ¶
type IFindingsFilterRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a FindingsFilter resource.
// Experimental.
FindingsFilterRef() *FindingsFilterReference
}
Indicates that this resource can be referenced as a FindingsFilter. Experimental.
type ISessionRef ¶
type ISessionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Session resource.
// Experimental.
SessionRef() *SessionReference
}
Indicates that this resource can be referenced as a Session. Experimental.
type SessionReference ¶
type SessionReference struct {
// The AwsAccountId of the Session resource.
AwsAccountId *string `field:"required" json:"awsAccountId" yaml:"awsAccountId"`
}
A reference to a Session 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"
sessionReference := &SessionReference{
AwsAccountId: jsii.String("awsAccountId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.