Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CRLReference ¶
type CRLReference struct {
// The CrlId of the CRL resource.
CrlId *string `field:"required" json:"crlId" yaml:"crlId"`
}
A reference to a CRL 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"
cRLReference := &CRLReference{
CrlId: jsii.String("crlId"),
}
type ICRLRef ¶
type ICRLRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a CRL resource.
// Experimental.
CrlRef() *CRLReference
}
Indicates that this resource can be referenced as a CRL. Experimental.
type IProfileRef ¶
type IProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Profile resource.
// Experimental.
ProfileRef() *ProfileReference
}
Indicates that this resource can be referenced as a Profile. Experimental.
type ITrustAnchorRef ¶
type ITrustAnchorRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TrustAnchor resource.
// Experimental.
TrustAnchorRef() *TrustAnchorReference
}
Indicates that this resource can be referenced as a TrustAnchor. Experimental.
type ProfileReference ¶
type ProfileReference struct {
// The ARN of the Profile resource.
ProfileArn *string `field:"required" json:"profileArn" yaml:"profileArn"`
// The ProfileId of the Profile resource.
ProfileId *string `field:"required" json:"profileId" yaml:"profileId"`
}
A reference to a Profile 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"
profileReference := &ProfileReference{
ProfileArn: jsii.String("profileArn"),
ProfileId: jsii.String("profileId"),
}
type TrustAnchorReference ¶
type TrustAnchorReference struct {
// The ARN of the TrustAnchor resource.
TrustAnchorArn *string `field:"required" json:"trustAnchorArn" yaml:"trustAnchorArn"`
// The TrustAnchorId of the TrustAnchor resource.
TrustAnchorId *string `field:"required" json:"trustAnchorId" yaml:"trustAnchorId"`
}
A reference to a TrustAnchor 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"
trustAnchorReference := &TrustAnchorReference{
TrustAnchorArn: jsii.String("trustAnchorArn"),
TrustAnchorId: jsii.String("trustAnchorId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.