Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type IProfilePermissionRef ¶
type IProfilePermissionRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ProfilePermission resource.
// Experimental.
ProfilePermissionRef() *ProfilePermissionReference
}
Indicates that this resource can be referenced as a ProfilePermission. Experimental.
type ISigningProfileRef ¶
type ISigningProfileRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SigningProfile resource.
// Experimental.
SigningProfileRef() *SigningProfileReference
}
Indicates that this resource can be referenced as a SigningProfile. Experimental.
type ProfilePermissionReference ¶
type ProfilePermissionReference struct {
// The ProfileName of the ProfilePermission resource.
ProfileName *string `field:"required" json:"profileName" yaml:"profileName"`
// The StatementId of the ProfilePermission resource.
StatementId *string `field:"required" json:"statementId" yaml:"statementId"`
}
A reference to a ProfilePermission 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"
profilePermissionReference := &ProfilePermissionReference{
ProfileName: jsii.String("profileName"),
StatementId: jsii.String("statementId"),
}
type SigningProfileReference ¶
type SigningProfileReference struct {
// The Arn of the SigningProfile resource.
SigningProfileArn *string `field:"required" json:"signingProfileArn" yaml:"signingProfileArn"`
}
A reference to a SigningProfile 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"
signingProfileReference := &SigningProfileReference{
SigningProfileArn: jsii.String("signingProfileArn"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.