Documentation ¶
Index ¶
- func CfnGraph_CFN_RESOURCE_TYPE_NAME() *string
- func CfnGraph_IsCfnElement(x interface{}) *bool
- func CfnGraph_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnGraph_IsConstruct(x interface{}) *bool
- func CfnMemberInvitation_CFN_RESOURCE_TYPE_NAME() *string
- func CfnMemberInvitation_IsCfnElement(x interface{}) *bool
- func CfnMemberInvitation_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnMemberInvitation_IsConstruct(x interface{}) *bool
- func NewCfnGraph_Override(c CfnGraph, scope constructs.Construct, id *string, props *CfnGraphProps)
- func NewCfnMemberInvitation_Override(c CfnMemberInvitation, scope constructs.Construct, id *string, ...)
- type CfnGraph
- type CfnGraphProps
- type CfnMemberInvitation
- type CfnMemberInvitationProps
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnGraph_CFN_RESOURCE_TYPE_NAME ¶
func CfnGraph_CFN_RESOURCE_TYPE_NAME() *string
func CfnGraph_IsCfnElement ¶
func CfnGraph_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnGraph_IsCfnResource ¶
func CfnGraph_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnGraph_IsConstruct ¶
func CfnGraph_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func CfnMemberInvitation_CFN_RESOURCE_TYPE_NAME ¶
func CfnMemberInvitation_CFN_RESOURCE_TYPE_NAME() *string
func CfnMemberInvitation_IsCfnElement ¶
func CfnMemberInvitation_IsCfnElement(x interface{}) *bool
Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).
Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.
Returns: The construct as a stack element or undefined if it is not a stack element.
func CfnMemberInvitation_IsCfnResource ¶
func CfnMemberInvitation_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnMemberInvitation_IsConstruct ¶
func CfnMemberInvitation_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead
func NewCfnGraph_Override ¶
func NewCfnGraph_Override(c CfnGraph, scope constructs.Construct, id *string, props *CfnGraphProps)
Create a new `AWS::Detective::Graph`.
func NewCfnMemberInvitation_Override ¶
func NewCfnMemberInvitation_Override(c CfnMemberInvitation, scope constructs.Construct, id *string, props *CfnMemberInvitationProps)
Create a new `AWS::Detective::MemberInvitation`.
Types ¶
type CfnGraph ¶
type CfnGraph interface { awscdk.CfnResource awscdk.IInspectable AttrArn() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string LogicalId() *string Node() constructs.Node Ref() *string Stack() awscdk.Stack Tags() awscdk.TagManager UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::Detective::Graph`.
TODO: EXAMPLE
func NewCfnGraph ¶
func NewCfnGraph(scope constructs.Construct, id *string, props *CfnGraphProps) CfnGraph
Create a new `AWS::Detective::Graph`.
type CfnGraphProps ¶
type CfnGraphProps struct {
// `AWS::Detective::Graph.Tags`.
Tags *[]*awscdk.CfnTag `json:"tags"`
}
Properties for defining a `AWS::Detective::Graph`.
TODO: EXAMPLE
type CfnMemberInvitation ¶
type CfnMemberInvitation interface { awscdk.CfnResource awscdk.IInspectable CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string DisableEmailNotification() interface{} SetDisableEmailNotification(val interface{}) GraphArn() *string SetGraphArn(val *string) LogicalId() *string MemberEmailAddress() *string SetMemberEmailAddress(val *string) MemberId() *string SetMemberId(val *string) Message() *string SetMessage(val *string) Node() constructs.Node Ref() *string Stack() awscdk.Stack UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OverrideLogicalId(newLogicalId *string) RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::Detective::MemberInvitation`.
TODO: EXAMPLE
func NewCfnMemberInvitation ¶
func NewCfnMemberInvitation(scope constructs.Construct, id *string, props *CfnMemberInvitationProps) CfnMemberInvitation
Create a new `AWS::Detective::MemberInvitation`.
type CfnMemberInvitationProps ¶
type CfnMemberInvitationProps struct { // `AWS::Detective::MemberInvitation.DisableEmailNotification`. DisableEmailNotification interface{} `json:"disableEmailNotification"` // `AWS::Detective::MemberInvitation.GraphArn`. GraphArn *string `json:"graphArn"` // `AWS::Detective::MemberInvitation.MemberEmailAddress`. MemberEmailAddress *string `json:"memberEmailAddress"` // `AWS::Detective::MemberInvitation.MemberId`. MemberId *string `json:"memberId"` // `AWS::Detective::MemberInvitation.Message`. Message *string `json:"message"` }
Properties for defining a `AWS::Detective::MemberInvitation`.
TODO: EXAMPLE