@awboost/cfn-resource-types 0.1.103 → 0.1.104
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.
|
@@ -6,17 +6,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
*/
|
|
7
7
|
export type GuardDutyMalwareProtectionPlanProperties = {
|
|
8
8
|
/**
|
|
9
|
-
*
|
|
9
|
+
* Specifies the action that is to be applied to the Malware Protection plan resource.
|
|
10
10
|
*/
|
|
11
11
|
Actions?: CFNActions;
|
|
12
12
|
/**
|
|
13
|
-
* Information about the protected resource
|
|
13
|
+
* Information about the protected resource. Presently, S3Bucket is the only supported protected resource.
|
|
14
14
|
*/
|
|
15
15
|
ProtectedResource: CFNProtectedResource;
|
|
16
16
|
/**
|
|
17
|
-
* IAM role that includes the permissions required to scan and add tags to the associated protected resource.
|
|
17
|
+
* IAM role that includes the permissions required to scan and (optionally) add tags to the associated protected resource.
|
|
18
18
|
*/
|
|
19
19
|
Role: string;
|
|
20
|
+
/**
|
|
21
|
+
* The tags to be added to the created Malware Protection plan resource. Each tag consists of a key and an optional value, both of which you need to specify.
|
|
22
|
+
*/
|
|
20
23
|
Tags?: TagItem[];
|
|
21
24
|
};
|
|
22
25
|
/**
|
|
@@ -37,15 +40,15 @@ export type GuardDutyMalwareProtectionPlanAttributes = {
|
|
|
37
40
|
*/
|
|
38
41
|
MalwareProtectionPlanId: string;
|
|
39
42
|
/**
|
|
40
|
-
* Malware Protection plan
|
|
43
|
+
* Status of the Malware Protection plan resource.
|
|
41
44
|
*/
|
|
42
45
|
Status: string;
|
|
43
46
|
/**
|
|
44
|
-
*
|
|
47
|
+
* Status details associated with the Malware Protection plan resource status.
|
|
45
48
|
*/
|
|
46
49
|
StatusReasons: {
|
|
47
50
|
/**
|
|
48
|
-
*
|
|
51
|
+
* The status code of the Malware Protection plan.
|
|
49
52
|
*/
|
|
50
53
|
Code: string;
|
|
51
54
|
/**
|
|
@@ -60,7 +63,7 @@ export type GuardDutyMalwareProtectionPlanAttributes = {
|
|
|
60
63
|
*/
|
|
61
64
|
export type CFNActions = {
|
|
62
65
|
/**
|
|
63
|
-
*
|
|
66
|
+
* Contains information about tagging status of the Malware Protection plan resource.
|
|
64
67
|
*/
|
|
65
68
|
Tagging?: CFNTagging;
|
|
66
69
|
};
|
|
@@ -89,7 +92,7 @@ export type CFNProtectedResource = {
|
|
|
89
92
|
*/
|
|
90
93
|
export type CFNStatusReasons = {
|
|
91
94
|
/**
|
|
92
|
-
*
|
|
95
|
+
* The status code of the Malware Protection plan.
|
|
93
96
|
*/
|
|
94
97
|
Code?: string;
|
|
95
98
|
/**
|
|
@@ -103,7 +106,7 @@ export type CFNStatusReasons = {
|
|
|
103
106
|
*/
|
|
104
107
|
export type CFNTagging = {
|
|
105
108
|
/**
|
|
106
|
-
* Indicates whether or not the
|
|
109
|
+
* Indicates whether or not you chose GuardDuty to add a predefined tag to the scanned S3 object.
|
|
107
110
|
*/
|
|
108
111
|
Status?: string;
|
|
109
112
|
};
|
|
@@ -114,7 +114,7 @@ export type TrackingOptions = {
|
|
|
114
114
|
/**
|
|
115
115
|
* The domain to use for tracking open and click events.
|
|
116
116
|
*/
|
|
117
|
-
CustomRedirectDomain
|
|
117
|
+
CustomRedirectDomain: string;
|
|
118
118
|
};
|
|
119
119
|
/**
|
|
120
120
|
* Type definition for `AWS::SES::ConfigurationSet.VdmOptions`.
|