@awboost/cfn-resource-types 0.1.311 → 0.1.312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -42,6 +42,11 @@ export type EventsApiDestinationAttributes = {
|
|
|
42
42
|
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+/[\-A-Za-z0-9]+$`
|
|
43
43
|
*/
|
|
44
44
|
Arn: string;
|
|
45
|
+
/**
|
|
46
|
+
* The arn of the api destination to be used in IAM policies.
|
|
47
|
+
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:api-destination/[\.\-_A-Za-z0-9]+$`
|
|
48
|
+
*/
|
|
49
|
+
ArnForPolicy: string;
|
|
45
50
|
};
|
|
46
51
|
/**
|
|
47
52
|
* Resource Type definition for AWS::Events::ApiDestination.
|
|
@@ -13,6 +13,11 @@ export type EventsArchiveProperties = {
|
|
|
13
13
|
ArchiveName?: string;
|
|
14
14
|
Description?: string;
|
|
15
15
|
EventPattern?: Record<string, any>;
|
|
16
|
+
/**
|
|
17
|
+
* @minLength `0`
|
|
18
|
+
* @maxLength `2048`
|
|
19
|
+
*/
|
|
20
|
+
KmsKeyIdentifier?: string;
|
|
16
21
|
RetentionDays?: number;
|
|
17
22
|
SourceArn: string;
|
|
18
23
|
};
|
|
@@ -36,6 +36,11 @@ export type EventsConnectionAttributes = {
|
|
|
36
36
|
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+\/[\-A-Za-z0-9]+$`
|
|
37
37
|
*/
|
|
38
38
|
Arn: string;
|
|
39
|
+
/**
|
|
40
|
+
* The arn of the connection resource to be used in IAM policies.
|
|
41
|
+
* @pattern `^arn:aws([a-z]|\-)*:events:([a-z]|\d|\-)*:([0-9]{12})?:connection\/[\.\-_A-Za-z0-9]+$`
|
|
42
|
+
*/
|
|
43
|
+
ArnForPolicy: string;
|
|
39
44
|
AuthParameters: {
|
|
40
45
|
ConnectivityParameters: {
|
|
41
46
|
ResourceParameters: {
|