-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CloudFormation Template Schema upgrade
- Loading branch information
1 parent
caf037b
commit 4f5e330
Showing
20 changed files
with
9,937 additions
and
8,770 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
server/schema/resources/aws-notifications-channelassociation.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
{ | ||
"typeName": "AWS::Notifications::ChannelAssociation", | ||
"description": "Definition of AWS::Notifications::ChannelAssociation Resource Type", | ||
"properties": { | ||
"Arn": { | ||
"type": "string", | ||
"description": "ARN identifier of the channel.\nExample: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops", | ||
"markdownDescription": "ARN identifier of the channel.\nExample: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops\n\n---\n\nRequired: Yes \nType: String \nPattern: ^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$ \nUpdate requires: Replacement\n" | ||
}, | ||
"NotificationConfigurationArn": { | ||
"type": "string", | ||
"description": "ARN identifier of the NotificationConfiguration.\nExample: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1", | ||
"markdownDescription": "ARN identifier of the NotificationConfiguration.\nExample: arn:aws:notifications::123456789012:configuration/a01jes88qxwkbj05xv9c967pgm1\n\n---\n\nRequired: Yes \nType: String \nPattern: ^arn:aws:notifications::[0-9]{12}:configuration\\/[a-z0-9]{27}$ \nUpdate requires: Replacement\n" | ||
} | ||
}, | ||
"required": [ | ||
"Arn", | ||
"NotificationConfigurationArn" | ||
], | ||
"createOnlyProperties": [ | ||
"/properties/Arn", | ||
"/properties/NotificationConfigurationArn" | ||
], | ||
"primaryIdentifier": [ | ||
"/properties/Arn", | ||
"/properties/NotificationConfigurationArn" | ||
], | ||
"handlers": { | ||
"create": { | ||
"permissions": [ | ||
"notifications:AssociateChannel", | ||
"notifications:ListChannels" | ||
] | ||
}, | ||
"delete": { | ||
"permissions": [ | ||
"notifications:DisassociateChannel" | ||
] | ||
}, | ||
"list": { | ||
"handlerSchema": { | ||
"properties": { | ||
"NotificationConfigurationArn": { | ||
"type": "string", | ||
"markdownDescription": "\n\n---\n\nRequired: Yes \nType: String \nPattern: ^arn:aws:notifications::[0-9]{12}:configuration\\/[a-z0-9]{27}$ \nUpdate requires: No interruption\n" | ||
} | ||
}, | ||
"required": [ | ||
"NotificationConfigurationArn" | ||
] | ||
}, | ||
"permissions": [ | ||
"notifications:ListChannels" | ||
] | ||
}, | ||
"read": { | ||
"permissions": [ | ||
"notifications:ListChannels" | ||
] | ||
} | ||
}, | ||
"tagging": { | ||
"taggable": false | ||
}, | ||
"additionalProperties": false, | ||
"attributes": {} | ||
} |
Oops, something went wrong.