@awboost/cfn-resource-types 0.1.102 → 0.1.103
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.
|
@@ -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
|
*/
|
|
@@ -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}
|