Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IIdMappingWorkflowRef ¶
type IIdMappingWorkflowRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a IdMappingWorkflow resource.
// Experimental.
IdMappingWorkflowRef() *IdMappingWorkflowReference
}
Indicates that this resource can be referenced as a IdMappingWorkflow. Experimental.
type IIdNamespaceRef ¶
type IIdNamespaceRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a IdNamespace resource.
// Experimental.
IdNamespaceRef() *IdNamespaceReference
}
Indicates that this resource can be referenced as a IdNamespace. Experimental.
type IMatchingWorkflowRef ¶
type IMatchingWorkflowRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a MatchingWorkflow resource.
// Experimental.
MatchingWorkflowRef() *MatchingWorkflowReference
}
Indicates that this resource can be referenced as a MatchingWorkflow. Experimental.
type IPolicyStatementRef ¶
type IPolicyStatementRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a PolicyStatement resource.
// Experimental.
PolicyStatementRef() *PolicyStatementReference
}
Indicates that this resource can be referenced as a PolicyStatement. Experimental.
type ISchemaMappingRef ¶
type ISchemaMappingRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SchemaMapping resource.
// Experimental.
SchemaMappingRef() *SchemaMappingReference
}
Indicates that this resource can be referenced as a SchemaMapping. Experimental.
type IdMappingWorkflowReference ¶
type IdMappingWorkflowReference struct {
// The WorkflowName of the IdMappingWorkflow resource.
WorkflowName *string `field:"required" json:"workflowName" yaml:"workflowName"`
}
A reference to a IdMappingWorkflow 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"
idMappingWorkflowReference := &IdMappingWorkflowReference{
WorkflowName: jsii.String("workflowName"),
}
type IdNamespaceReference ¶
type IdNamespaceReference struct {
// The ARN of the IdNamespace resource.
IdNamespaceArn *string `field:"required" json:"idNamespaceArn" yaml:"idNamespaceArn"`
// The IdNamespaceName of the IdNamespace resource.
IdNamespaceName *string `field:"required" json:"idNamespaceName" yaml:"idNamespaceName"`
}
A reference to a IdNamespace 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"
idNamespaceReference := &IdNamespaceReference{
IdNamespaceArn: jsii.String("idNamespaceArn"),
IdNamespaceName: jsii.String("idNamespaceName"),
}
type MatchingWorkflowReference ¶
type MatchingWorkflowReference struct {
// The WorkflowName of the MatchingWorkflow resource.
WorkflowName *string `field:"required" json:"workflowName" yaml:"workflowName"`
}
A reference to a MatchingWorkflow 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"
matchingWorkflowReference := &MatchingWorkflowReference{
WorkflowName: jsii.String("workflowName"),
}
type PolicyStatementReference ¶
type PolicyStatementReference struct {
// The Arn of the PolicyStatement resource.
PolicyStatementArn *string `field:"required" json:"policyStatementArn" yaml:"policyStatementArn"`
// The StatementId of the PolicyStatement resource.
StatementId *string `field:"required" json:"statementId" yaml:"statementId"`
}
A reference to a PolicyStatement 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"
policyStatementReference := &PolicyStatementReference{
PolicyStatementArn: jsii.String("policyStatementArn"),
StatementId: jsii.String("statementId"),
}
type SchemaMappingReference ¶
type SchemaMappingReference struct {
// The SchemaName of the SchemaMapping resource.
SchemaName *string `field:"required" json:"schemaName" yaml:"schemaName"`
}
A reference to a SchemaMapping 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"
schemaMappingReference := &SchemaMappingReference{
SchemaName: jsii.String("schemaName"),
}