Documentation
¶
Index ¶
- func CfnEventIntegration_CFN_RESOURCE_TYPE_NAME() *string
- func CfnEventIntegration_IsCfnElement(x interface{}) *bool
- func CfnEventIntegration_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnEventIntegration_IsConstruct(x interface{}) *bool
- func NewCfnEventIntegration_Override(c CfnEventIntegration, scope constructs.Construct, id *string, ...)
- type CfnEventIntegration
- type CfnEventIntegrationProps
- type CfnEventIntegration_EventFilterProperty
- type CfnEventIntegration_EventIntegrationAssociationProperty
- type CfnEventIntegration_MetadataProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnEventIntegration_CFN_RESOURCE_TYPE_NAME ¶
func CfnEventIntegration_CFN_RESOURCE_TYPE_NAME() *string
func CfnEventIntegration_IsCfnElement ¶
func CfnEventIntegration_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 CfnEventIntegration_IsCfnResource ¶
func CfnEventIntegration_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnEventIntegration_IsConstruct ¶
func CfnEventIntegration_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 NewCfnEventIntegration_Override ¶
func NewCfnEventIntegration_Override(c CfnEventIntegration, scope constructs.Construct, id *string, props *CfnEventIntegrationProps)
Create a new `AWS::AppIntegrations::EventIntegration`.
Types ¶
type CfnEventIntegration ¶
type CfnEventIntegration interface {
awscdk.CfnResource
awscdk.IInspectable
AttrAssociations() awscdk.IResolvable
AttrEventIntegrationArn() *string
CfnOptions() awscdk.ICfnResourceOptions
CfnProperties() *map[string]interface{}
CfnResourceType() *string
CreationStack() *[]*string
Description() *string
SetDescription(val *string)
EventBridgeBus() *string
SetEventBridgeBus(val *string)
EventFilter() interface{}
SetEventFilter(val interface{})
LogicalId() *string
Name() *string
SetName(val *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::AppIntegrations::EventIntegration`.
TODO: EXAMPLE
func NewCfnEventIntegration ¶
func NewCfnEventIntegration(scope constructs.Construct, id *string, props *CfnEventIntegrationProps) CfnEventIntegration
Create a new `AWS::AppIntegrations::EventIntegration`.
type CfnEventIntegrationProps ¶
type CfnEventIntegrationProps struct {
// `AWS::AppIntegrations::EventIntegration.Description`.
Description *string `json:"description"`
// `AWS::AppIntegrations::EventIntegration.EventBridgeBus`.
EventBridgeBus *string `json:"eventBridgeBus"`
// `AWS::AppIntegrations::EventIntegration.EventFilter`.
EventFilter interface{} `json:"eventFilter"`
// `AWS::AppIntegrations::EventIntegration.Name`.
Name *string `json:"name"`
// `AWS::AppIntegrations::EventIntegration.Tags`.
Tags *[]*awscdk.CfnTag `json:"tags"`
}
Properties for defining a `AWS::AppIntegrations::EventIntegration`.
TODO: EXAMPLE
type CfnEventIntegration_EventFilterProperty ¶
type CfnEventIntegration_EventFilterProperty struct {
// `CfnEventIntegration.EventFilterProperty.Source`.
Source *string `json:"source"`
}
TODO: EXAMPLE
type CfnEventIntegration_EventIntegrationAssociationProperty ¶
type CfnEventIntegration_EventIntegrationAssociationProperty struct {
// `CfnEventIntegration.EventIntegrationAssociationProperty.ClientAssociationMetadata`.
ClientAssociationMetadata interface{} `json:"clientAssociationMetadata"`
// `CfnEventIntegration.EventIntegrationAssociationProperty.ClientId`.
ClientId *string `json:"clientId"`
// `CfnEventIntegration.EventIntegrationAssociationProperty.EventBridgeRuleName`.
EventBridgeRuleName *string `json:"eventBridgeRuleName"`
// `CfnEventIntegration.EventIntegrationAssociationProperty.EventIntegrationAssociationArn`.
EventIntegrationAssociationArn *string `json:"eventIntegrationAssociationArn"`
// `CfnEventIntegration.EventIntegrationAssociationProperty.EventIntegrationAssociationId`.
EventIntegrationAssociationId *string `json:"eventIntegrationAssociationId"`
}
TODO: EXAMPLE
type CfnEventIntegration_MetadataProperty ¶
type CfnEventIntegration_MetadataProperty struct {
// `CfnEventIntegration.MetadataProperty.Key`.
Key *string `json:"key"`
// `CfnEventIntegration.MetadataProperty.Value`.
Value *string `json:"value"`
}
TODO: EXAMPLE