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 awscdk.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. Experimental.
func CfnEventIntegration_IsCfnResource ¶
func CfnEventIntegration_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnEventIntegration_IsConstruct ¶
func CfnEventIntegration_IsConstruct(x interface{}) *bool
Return whether the given object is a Construct. Experimental.
func NewCfnEventIntegration_Override ¶
func NewCfnEventIntegration_Override(c CfnEventIntegration, scope awscdk.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() awscdk.ConstructNode 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) OnPrepare() OnSynthesize(session constructs.ISynthesisSession) OnValidate() *[]*string OverrideLogicalId(newLogicalId *string) Prepare() RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool Synthesize(session awscdk.ISynthesisSession) ToString() *string Validate() *[]*string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::AppIntegrations::EventIntegration`.
func NewCfnEventIntegration ¶
func NewCfnEventIntegration(scope awscdk.Construct, id *string, props *CfnEventIntegrationProps) CfnEventIntegration
Create a new `AWS::AppIntegrations::EventIntegration`.
type CfnEventIntegrationProps ¶
type CfnEventIntegrationProps struct { // `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.Description`. Description *string `json:"description"` // `AWS::AppIntegrations::EventIntegration.Tags`. Tags *[]*awscdk.CfnTag `json:"tags"` }
Properties for defining a `AWS::AppIntegrations::EventIntegration`.
type CfnEventIntegration_EventFilterProperty ¶
type CfnEventIntegration_EventFilterProperty struct { // `CfnEventIntegration.EventFilterProperty.Source`. Source *string `json:"source"` }
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"` }