@awboost/cfn-resource-types 0.1.102 → 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.
- package/lib/AWS-Bedrock-Agent.d.ts +0 -1
- package/lib/AWS-GuardDuty-MalwareProtectionPlan.d.ts +12 -9
- package/lib/AWS-Lambda-Function.d.ts +3 -2
- package/lib/AWS-RDS-GlobalCluster.d.ts +4 -0
- package/lib/AWS-SES-ConfigurationSet.d.ts +1 -1
- package/lib/AWS-SageMaker-Domain.d.ts +1 -1
- package/lib/AWS-VerifiedPermissions-IdentitySource.d.ts +76 -0
- package/package.json +1 -1
|
@@ -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
|
};
|
|
@@ -96,8 +96,9 @@ export type LambdaFunctionProperties = {
|
|
|
96
96
|
*/
|
|
97
97
|
Role: string;
|
|
98
98
|
/**
|
|
99
|
-
* The identifier of the function's [runtime](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html). Runtime is required if the deployment package is a .zip file archive.
|
|
100
|
-
The following list includes deprecated runtimes. For more information, see [Runtime deprecation
|
|
99
|
+
* The identifier of the function's [runtime](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html). Runtime is required if the deployment package is a .zip file archive. Specifying a runtime results in an error if you're deploying a function using a container image.
|
|
100
|
+
The following list includes deprecated runtimes. Lambda blocks creating new functions and updating existing functions shortly after each runtime is deprecated. For more information, see [Runtime use after deprecation](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtime-deprecation-levels).
|
|
101
|
+
For a list of all currently supported runtimes, see [Supported runtimes](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html#runtimes-supported).
|
|
101
102
|
*/
|
|
102
103
|
Runtime?: string;
|
|
103
104
|
/**
|
|
@@ -14,6 +14,10 @@ export type RDSGlobalClusterProperties = {
|
|
|
14
14
|
If you specify the SourceDBClusterIdentifier property, don't specify this property. The value is inherited from the cluster.
|
|
15
15
|
*/
|
|
16
16
|
Engine?: "aurora" | "aurora-mysql" | "aurora-postgresql";
|
|
17
|
+
/**
|
|
18
|
+
* The life cycle type of the global cluster. You can use this setting to enroll your global cluster into Amazon RDS Extended Support.
|
|
19
|
+
*/
|
|
20
|
+
EngineLifecycleSupport?: string;
|
|
17
21
|
/**
|
|
18
22
|
* The version number of the database engine to use. If you specify the SourceDBClusterIdentifier property, don't specify this property. The value is inherited from the cluster.
|
|
19
23
|
*/
|
|
@@ -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`.
|
|
@@ -87,6 +87,8 @@ export type CognitoUserPoolConfiguration = {
|
|
|
87
87
|
*/
|
|
88
88
|
export type IdentitySourceConfiguration = {
|
|
89
89
|
CognitoUserPoolConfiguration: CognitoUserPoolConfiguration;
|
|
90
|
+
} | {
|
|
91
|
+
OpenIdConnectConfiguration: OpenIdConnectConfiguration;
|
|
90
92
|
};
|
|
91
93
|
/**
|
|
92
94
|
* Type definition for `AWS::VerifiedPermissions::IdentitySource.IdentitySourceDetails`.
|
|
@@ -112,6 +114,80 @@ export type IdentitySourceDetails = {
|
|
|
112
114
|
*/
|
|
113
115
|
UserPoolArn?: string;
|
|
114
116
|
};
|
|
117
|
+
/**
|
|
118
|
+
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdConnectAccessTokenConfiguration`.
|
|
119
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidconnectaccesstokenconfiguration.html}
|
|
120
|
+
*/
|
|
121
|
+
export type OpenIdConnectAccessTokenConfiguration = {
|
|
122
|
+
/**
|
|
123
|
+
* @minLength `1`
|
|
124
|
+
* @maxLength `255`
|
|
125
|
+
*/
|
|
126
|
+
Audiences?: string[];
|
|
127
|
+
/**
|
|
128
|
+
* @minLength `1`
|
|
129
|
+
*/
|
|
130
|
+
PrincipalIdClaim?: string;
|
|
131
|
+
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdConnectConfiguration`.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidconnectconfiguration.html}
|
|
135
|
+
*/
|
|
136
|
+
export type OpenIdConnectConfiguration = {
|
|
137
|
+
/**
|
|
138
|
+
* @minLength `1`
|
|
139
|
+
* @maxLength `100`
|
|
140
|
+
*/
|
|
141
|
+
EntityIdPrefix?: string;
|
|
142
|
+
GroupConfiguration?: OpenIdConnectGroupConfiguration;
|
|
143
|
+
/**
|
|
144
|
+
* @minLength `1`
|
|
145
|
+
* @maxLength `2048`
|
|
146
|
+
* @pattern `^https://.*$`
|
|
147
|
+
*/
|
|
148
|
+
Issuer: string;
|
|
149
|
+
TokenSelection: OpenIdConnectTokenSelection;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdConnectGroupConfiguration`.
|
|
153
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidconnectgroupconfiguration.html}
|
|
154
|
+
*/
|
|
155
|
+
export type OpenIdConnectGroupConfiguration = {
|
|
156
|
+
/**
|
|
157
|
+
* @minLength `1`
|
|
158
|
+
*/
|
|
159
|
+
GroupClaim: string;
|
|
160
|
+
/**
|
|
161
|
+
* @minLength `1`
|
|
162
|
+
* @maxLength `200`
|
|
163
|
+
* @pattern `^([_a-zA-Z][_a-zA-Z0-9]*::)*[_a-zA-Z][_a-zA-Z0-9]*$`
|
|
164
|
+
*/
|
|
165
|
+
GroupEntityType: string;
|
|
166
|
+
};
|
|
167
|
+
/**
|
|
168
|
+
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdConnectIdentityTokenConfiguration`.
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidconnectidentitytokenconfiguration.html}
|
|
170
|
+
*/
|
|
171
|
+
export type OpenIdConnectIdentityTokenConfiguration = {
|
|
172
|
+
/**
|
|
173
|
+
* @minLength `0`
|
|
174
|
+
* @maxLength `1000`
|
|
175
|
+
*/
|
|
176
|
+
ClientIds?: string[];
|
|
177
|
+
/**
|
|
178
|
+
* @minLength `1`
|
|
179
|
+
*/
|
|
180
|
+
PrincipalIdClaim?: string;
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdConnectTokenSelection`.
|
|
184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidconnecttokenselection.html}
|
|
185
|
+
*/
|
|
186
|
+
export type OpenIdConnectTokenSelection = {
|
|
187
|
+
AccessTokenOnly: OpenIdConnectAccessTokenConfiguration;
|
|
188
|
+
} | {
|
|
189
|
+
IdentityTokenOnly: OpenIdConnectIdentityTokenConfiguration;
|
|
190
|
+
};
|
|
115
191
|
/**
|
|
116
192
|
* Type definition for `AWS::VerifiedPermissions::IdentitySource.OpenIdIssuer`.
|
|
117
193
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-identitysource-openidissuer.html}
|