You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cloudformation_compatibility.rst
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ Tracing All
60
60
KmsKeyArn All
61
61
DeadLetterQueue All
62
62
DeploymentPreference All
63
+
Layers All
63
64
AutoPublishAlias Ref of a CloudFormation Parameter Alias resources created by SAM uses a LocicalId <FunctionLogicalId+AliasName>. So SAM either needs a string for alias name, or a Ref to template Parameter that SAM can resolve into a string.
This app uses the [twitter event source app](https://serverlessrepo.aws.amazon.com/applications/arn:aws:serverlessrepo:us-east-1:077246666028:applications~aws-serverless-twitter-event-source) as a nested app and logs the tweets received from the nested app.
4
+
5
+
All you need to do is supply the desired parameters for this app and deploy. SAM will create a nested stack for any nested app inside of your template with all of the parameters that are passed to it.
6
+
7
+
## Installation Instructions
8
+
Please refer to the Installation Steps section of the [twitter-event-source application](https://serverlessrepo.aws.amazon.com/applications/arn:aws:serverlessrepo:us-east-1:077246666028:applications~aws-serverless-twitter-event-source) for detailed information regarding how to obtain and use the tokens and secrets for this application.
Description: This example imports the aws-serverless-twitter-event-source serverless app as a nested app in this serverless application and connects it to a function that will log the tweets sent for the given Twitter search text.
4
+
Parameters:
5
+
EncryptedAccessToken:
6
+
Type: String
7
+
Description: Twitter API Access Token encrypted ciphertext blob as a base64-encoded string.
8
+
EncryptedAccessTokenSecret:
9
+
Type: String
10
+
Description: Twitter API Access Token Secret ciphertext blob as a base64-encoded string.
11
+
EncryptedConsumerKey:
12
+
Type: String
13
+
Description: Twitter API Consumer Key encrypted ciphertext blob as a base64-encoded string.
14
+
EncryptedConsumerSecret:
15
+
Type: String
16
+
Description: Twitter API Consumer Secret encrypted ciphertext blob as a base64-encoded string.
17
+
DecryptionKeyName:
18
+
Type: String
19
+
Description: KMS key name of the key used to encrypt the Twitter API parameters. Note, this must be just the key name (UUID), not the full key ARN. It's assumed the key is owned by the same account, in the same region as the app.
20
+
SearchText:
21
+
Type: String
22
+
Description: Non-URL-encoded search text poller should use when querying Twitter Search API.
0 commit comments