Documentation
¶
Index ¶
- type ConnectorReference
- type DirectoryRegistrationReference
- type IConnectorRef
- type IDirectoryRegistrationRef
- type IServicePrincipalNameRef
- type ITemplateGroupAccessControlEntryRef
- type ITemplateRef
- type ServicePrincipalNameReference
- type TemplateGroupAccessControlEntryReference
- type TemplateReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ConnectorReference ¶
type ConnectorReference struct {
// The ConnectorArn of the Connector resource.
ConnectorArn *string `field:"required" json:"connectorArn" yaml:"connectorArn"`
}
A reference to a Connector 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"
connectorReference := &ConnectorReference{
ConnectorArn: jsii.String("connectorArn"),
}
type DirectoryRegistrationReference ¶
type DirectoryRegistrationReference struct {
// The DirectoryRegistrationArn of the DirectoryRegistration resource.
DirectoryRegistrationArn *string `field:"required" json:"directoryRegistrationArn" yaml:"directoryRegistrationArn"`
}
A reference to a DirectoryRegistration 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"
directoryRegistrationReference := &DirectoryRegistrationReference{
DirectoryRegistrationArn: jsii.String("directoryRegistrationArn"),
}
type IConnectorRef ¶
type IConnectorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Connector resource.
// Experimental.
ConnectorRef() *ConnectorReference
}
Indicates that this resource can be referenced as a Connector. Experimental.
type IDirectoryRegistrationRef ¶
type IDirectoryRegistrationRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a DirectoryRegistration resource.
// Experimental.
DirectoryRegistrationRef() *DirectoryRegistrationReference
}
Indicates that this resource can be referenced as a DirectoryRegistration. Experimental.
type IServicePrincipalNameRef ¶
type IServicePrincipalNameRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ServicePrincipalName resource.
// Experimental.
ServicePrincipalNameRef() *ServicePrincipalNameReference
}
Indicates that this resource can be referenced as a ServicePrincipalName. Experimental.
type ITemplateGroupAccessControlEntryRef ¶
type ITemplateGroupAccessControlEntryRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TemplateGroupAccessControlEntry resource.
// Experimental.
TemplateGroupAccessControlEntryRef() *TemplateGroupAccessControlEntryReference
}
Indicates that this resource can be referenced as a TemplateGroupAccessControlEntry. Experimental.
type ITemplateRef ¶
type ITemplateRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Template resource.
// Experimental.
TemplateRef() *TemplateReference
}
Indicates that this resource can be referenced as a Template. Experimental.
type ServicePrincipalNameReference ¶
type ServicePrincipalNameReference struct {
// The ConnectorArn of the ServicePrincipalName resource.
ConnectorArn *string `field:"required" json:"connectorArn" yaml:"connectorArn"`
// The DirectoryRegistrationArn of the ServicePrincipalName resource.
DirectoryRegistrationArn *string `field:"required" json:"directoryRegistrationArn" yaml:"directoryRegistrationArn"`
}
A reference to a ServicePrincipalName 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"
servicePrincipalNameReference := &ServicePrincipalNameReference{
ConnectorArn: jsii.String("connectorArn"),
DirectoryRegistrationArn: jsii.String("directoryRegistrationArn"),
}
type TemplateGroupAccessControlEntryReference ¶
type TemplateGroupAccessControlEntryReference struct {
// The GroupSecurityIdentifier of the TemplateGroupAccessControlEntry resource.
GroupSecurityIdentifier *string `field:"required" json:"groupSecurityIdentifier" yaml:"groupSecurityIdentifier"`
// The TemplateArn of the TemplateGroupAccessControlEntry resource.
TemplateArn *string `field:"required" json:"templateArn" yaml:"templateArn"`
}
A reference to a TemplateGroupAccessControlEntry 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"
templateGroupAccessControlEntryReference := &TemplateGroupAccessControlEntryReference{
GroupSecurityIdentifier: jsii.String("groupSecurityIdentifier"),
TemplateArn: jsii.String("templateArn"),
}
type TemplateReference ¶
type TemplateReference struct {
// The TemplateArn of the Template resource.
TemplateArn *string `field:"required" json:"templateArn" yaml:"templateArn"`
}
A reference to a Template 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"
templateReference := &TemplateReference{
TemplateArn: jsii.String("templateArn"),
}