Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GroupReference ¶
type GroupReference struct {
// The GroupARN of the Group resource.
GroupArn *string `field:"required" json:"groupArn" yaml:"groupArn"`
}
A reference to a Group 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"
groupReference := &GroupReference{
GroupArn: jsii.String("groupArn"),
}
type IGroupRef ¶
type IGroupRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a Group resource.
// Experimental.
GroupRef() *GroupReference
}
Indicates that this resource can be referenced as a Group. Experimental.
type IResourcePolicyRef ¶
type IResourcePolicyRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a ResourcePolicy resource.
// Experimental.
ResourcePolicyRef() *ResourcePolicyReference
}
Indicates that this resource can be referenced as a ResourcePolicy. Experimental.
type ISamplingRuleRef ¶
type ISamplingRuleRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a SamplingRule resource.
// Experimental.
SamplingRuleRef() *SamplingRuleReference
}
Indicates that this resource can be referenced as a SamplingRule. Experimental.
type ITransactionSearchConfigRef ¶
type ITransactionSearchConfigRef interface {
constructs.IConstruct
interfaces.IEnvironmentAware
// A reference to a TransactionSearchConfig resource.
// Experimental.
TransactionSearchConfigRef() *TransactionSearchConfigReference
}
Indicates that this resource can be referenced as a TransactionSearchConfig. Experimental.
type ResourcePolicyReference ¶
type ResourcePolicyReference struct {
// The PolicyName of the ResourcePolicy resource.
PolicyName *string `field:"required" json:"policyName" yaml:"policyName"`
}
A reference to a ResourcePolicy 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"
resourcePolicyReference := &ResourcePolicyReference{
PolicyName: jsii.String("policyName"),
}
type SamplingRuleReference ¶
type SamplingRuleReference struct {
// The RuleARN of the SamplingRule resource.
RuleArn *string `field:"required" json:"ruleArn" yaml:"ruleArn"`
}
A reference to a SamplingRule 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"
samplingRuleReference := &SamplingRuleReference{
RuleArn: jsii.String("ruleArn"),
}
type TransactionSearchConfigReference ¶
type TransactionSearchConfigReference struct {
// The AccountId of the TransactionSearchConfig resource.
AccountId *string `field:"required" json:"accountId" yaml:"accountId"`
}
A reference to a TransactionSearchConfig 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"
transactionSearchConfigReference := &TransactionSearchConfigReference{
AccountId: jsii.String("accountId"),
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.