Documentation ¶
Index ¶
- func CfnNotificationRule_CFN_RESOURCE_TYPE_NAME() *string
- func CfnNotificationRule_IsCfnElement(x interface{}) *bool
- func CfnNotificationRule_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnNotificationRule_IsConstruct(x interface{}) *bool
- func NewCfnNotificationRule_Override(c CfnNotificationRule, scope constructs.Construct, id *string, ...)
- type CfnNotificationRule
- type CfnNotificationRuleProps
- type CfnNotificationRule_TargetProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnNotificationRule_CFN_RESOURCE_TYPE_NAME ¶
func CfnNotificationRule_CFN_RESOURCE_TYPE_NAME() *string
func CfnNotificationRule_IsCfnElement ¶
func CfnNotificationRule_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 CfnNotificationRule_IsCfnResource ¶
func CfnNotificationRule_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource. Experimental.
func CfnNotificationRule_IsConstruct ¶
func CfnNotificationRule_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 NewCfnNotificationRule_Override ¶
func NewCfnNotificationRule_Override(c CfnNotificationRule, scope constructs.Construct, id *string, props *CfnNotificationRuleProps)
Create a new `AWS::CodeStarNotifications::NotificationRule`.
Types ¶
type CfnNotificationRule ¶
type CfnNotificationRule interface { awscdk.CfnResource awscdk.IInspectable CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string DetailType() *string SetDetailType(val *string) EventTypeIds() *[]*string SetEventTypeIds(val *[]*string) LogicalId() *string Name() *string SetName(val *string) Node() constructs.Node Ref() *string Resource() *string SetResource(val *string) Stack() awscdk.Stack Status() *string SetStatus(val *string) Tags() awscdk.TagManager Targets() interface{} SetTargets(val interface{}) 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::CodeStarNotifications::NotificationRule`.
func NewCfnNotificationRule ¶
func NewCfnNotificationRule(scope constructs.Construct, id *string, props *CfnNotificationRuleProps) CfnNotificationRule
Create a new `AWS::CodeStarNotifications::NotificationRule`.
type CfnNotificationRuleProps ¶
type CfnNotificationRuleProps struct { // `AWS::CodeStarNotifications::NotificationRule.DetailType`. DetailType *string `json:"detailType"` // `AWS::CodeStarNotifications::NotificationRule.EventTypeIds`. EventTypeIds *[]*string `json:"eventTypeIds"` // `AWS::CodeStarNotifications::NotificationRule.Name`. Name *string `json:"name"` // `AWS::CodeStarNotifications::NotificationRule.Resource`. Resource *string `json:"resource"` // `AWS::CodeStarNotifications::NotificationRule.Targets`. Targets interface{} `json:"targets"` // `AWS::CodeStarNotifications::NotificationRule.Status`. Status *string `json:"status"` // `AWS::CodeStarNotifications::NotificationRule.Tags`. Tags interface{} `json:"tags"` }
Properties for defining a `AWS::CodeStarNotifications::NotificationRule`.