@propulsionworks/cloudformation 0.1.42 → 0.1.43
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/out/exports/resources.generated/aws-bedrock-blueprint.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-dataautomationproject.d.ts +2 -2
- package/out/exports/resources.generated/aws-bedrockagentcore-gateway.d.ts +82 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +21 -0
- package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +5 -0
- package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +4 -0
- package/out/exports/resources.generated/aws-docdb-globalcluster.d.ts +111 -0
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +3 -0
- package/out/exports/resources.generated/aws-ec2-ipampool.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +8 -0
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-gamelift-fleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +29 -0
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +2 -2
- package/out/exports/resources.generated/aws-quicksight-actionconnector.d.ts +341 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +48 -0
- package/out/exports/resources.generated/aws-quicksight-dataset.d.ts +3 -3
- package/out/exports/resources.generated/aws-quicksight-datasource.d.ts +34 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +40 -0
- package/out/exports/resources.generated/aws-route53-hostedzone.d.ts +0 -1
- package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-configurationset.d.ts +26 -0
- package/out/exports/resources.generated/aws-wisdom-aiagent.d.ts +228 -1
- package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +3 -0
- package/package.json +1 -1
|
@@ -52,7 +52,7 @@ export type BedrockBlueprintAttribs = {
|
|
|
52
52
|
/**
|
|
53
53
|
* The blueprint's ARN.
|
|
54
54
|
* @maxLength 128
|
|
55
|
-
* @pattern ^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$
|
|
55
|
+
* @pattern ^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$
|
|
56
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-blueprint.html#cfn-bedrock-blueprint-blueprintarn}
|
|
57
57
|
*/
|
|
58
58
|
BlueprintArn: string;
|
|
@@ -79,7 +79,7 @@ export type BedrockDataAutomationProjectAttribs = {
|
|
|
79
79
|
/**
|
|
80
80
|
* The project's ARN.
|
|
81
81
|
* @maxLength 128
|
|
82
|
-
* @pattern ^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$
|
|
82
|
+
* @pattern ^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$
|
|
83
83
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-dataautomationproject.html#cfn-bedrock-dataautomationproject-projectarn}
|
|
84
84
|
*/
|
|
85
85
|
ProjectArn: string;
|
|
@@ -231,7 +231,7 @@ export type BlueprintItem = {
|
|
|
231
231
|
/**
|
|
232
232
|
* The blueprint's ARN.
|
|
233
233
|
* @maxLength 128
|
|
234
|
-
* @pattern ^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$
|
|
234
|
+
* @pattern ^arn:aws(|-cn|-us-gov|-iso|-iso-[a-z]):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):blueprint/(bedrock-data-automation-public-[a-zA-Z0-9-_]{1,30}|[a-zA-Z0-9-]{12,36})$
|
|
235
235
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-blueprintitem.html#cfn-bedrock-dataautomationproject-blueprintitem-blueprintarn}
|
|
236
236
|
*/
|
|
237
237
|
BlueprintArn: string;
|
|
@@ -133,6 +133,75 @@ export type AuthorizerConfiguration = {
|
|
|
133
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
|
|
134
134
|
*/
|
|
135
135
|
export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
|
|
136
|
+
/**
|
|
137
|
+
* The value or values in the custom claim to match and relationship of match
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizingclaimmatchvaluetype.html}
|
|
139
|
+
*/
|
|
140
|
+
export type AuthorizingClaimMatchValueType = {
|
|
141
|
+
/**
|
|
142
|
+
* The relationship between the claim field value and the value or values being matched
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizingclaimmatchvaluetype.html#cfn-bedrockagentcore-gateway-authorizingclaimmatchvaluetype-claimmatchoperator}
|
|
144
|
+
*/
|
|
145
|
+
ClaimMatchOperator: ClaimMatchOperator;
|
|
146
|
+
/**
|
|
147
|
+
* The value or values in the custom claim to match for
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizingclaimmatchvaluetype.html#cfn-bedrockagentcore-gateway-authorizingclaimmatchvaluetype-claimmatchvalue}
|
|
149
|
+
*/
|
|
150
|
+
ClaimMatchValue: ClaimMatchValueType;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* The relationship between the claim field value and the value or values being matched
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchoperator.html}
|
|
155
|
+
*/
|
|
156
|
+
export type ClaimMatchOperator = "EQUALS" | "CONTAINS" | "CONTAINS_ANY";
|
|
157
|
+
/**
|
|
158
|
+
* The value or values in the custom claim to match for
|
|
159
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchvaluetype.html}
|
|
160
|
+
*/
|
|
161
|
+
export type ClaimMatchValueType = {
|
|
162
|
+
/**
|
|
163
|
+
* The string value to match for
|
|
164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchvaluetype.html#cfn-bedrockagentcore-gateway-claimmatchvaluetype-matchvaluestring}
|
|
165
|
+
*/
|
|
166
|
+
MatchValueString: string;
|
|
167
|
+
/**
|
|
168
|
+
* The list of strings to check for a match
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchvaluetype.html#cfn-bedrockagentcore-gateway-claimmatchvaluetype-matchvaluestringlist}
|
|
170
|
+
*/
|
|
171
|
+
MatchValueStringList?: string[] | undefined;
|
|
172
|
+
} | {
|
|
173
|
+
/**
|
|
174
|
+
* The string value to match for
|
|
175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchvaluetype.html#cfn-bedrockagentcore-gateway-claimmatchvaluetype-matchvaluestring}
|
|
176
|
+
*/
|
|
177
|
+
MatchValueString?: string | undefined;
|
|
178
|
+
/**
|
|
179
|
+
* The list of strings to check for a match
|
|
180
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-claimmatchvaluetype.html#cfn-bedrockagentcore-gateway-claimmatchvaluetype-matchvaluestringlist}
|
|
181
|
+
*/
|
|
182
|
+
MatchValueStringList: string[];
|
|
183
|
+
};
|
|
184
|
+
/**
|
|
185
|
+
* Required custom claim
|
|
186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customclaimvalidationtype.html}
|
|
187
|
+
*/
|
|
188
|
+
export type CustomClaimValidationType = {
|
|
189
|
+
/**
|
|
190
|
+
* The value or values in the custom claim to match and relationship of match
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customclaimvalidationtype.html#cfn-bedrockagentcore-gateway-customclaimvalidationtype-authorizingclaimmatchvalue}
|
|
192
|
+
*/
|
|
193
|
+
AuthorizingClaimMatchValue: AuthorizingClaimMatchValueType;
|
|
194
|
+
/**
|
|
195
|
+
* The name of the custom claim to validate
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customclaimvalidationtype.html#cfn-bedrockagentcore-gateway-customclaimvalidationtype-inboundtokenclaimname}
|
|
197
|
+
*/
|
|
198
|
+
InboundTokenClaimName: string;
|
|
199
|
+
/**
|
|
200
|
+
* Token claim data type
|
|
201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customclaimvalidationtype.html#cfn-bedrockagentcore-gateway-customclaimvalidationtype-inboundtokenclaimvaluetype}
|
|
202
|
+
*/
|
|
203
|
+
InboundTokenClaimValueType: InboundTokenClaimValueType;
|
|
204
|
+
};
|
|
136
205
|
/**
|
|
137
206
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
|
|
138
207
|
*/
|
|
@@ -146,6 +215,14 @@ export type CustomJWTAuthorizerConfiguration = {
|
|
|
146
215
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-gateway-customjwtauthorizerconfiguration-allowedclients}
|
|
147
216
|
*/
|
|
148
217
|
AllowedClients?: string[] | undefined;
|
|
218
|
+
/**
|
|
219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-gateway-customjwtauthorizerconfiguration-allowedscopes}
|
|
220
|
+
*/
|
|
221
|
+
AllowedScopes?: string[] | undefined;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html#cfn-bedrockagentcore-gateway-customjwtauthorizerconfiguration-customclaims}
|
|
224
|
+
*/
|
|
225
|
+
CustomClaims?: CustomClaimValidationType[] | undefined;
|
|
149
226
|
/**
|
|
150
227
|
* The discovery URL for the authorizer configuration.
|
|
151
228
|
* @pattern ^.+/\.well-known/openid-configuration$
|
|
@@ -193,6 +270,11 @@ export type GatewayProtocolType = "MCP";
|
|
|
193
270
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
|
|
194
271
|
*/
|
|
195
272
|
export type GatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
|
|
273
|
+
/**
|
|
274
|
+
* Token claim data type
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-inboundtokenclaimvaluetype.html}
|
|
276
|
+
*/
|
|
277
|
+
export type InboundTokenClaimValueType = "STRING" | "STRING_ARRAY";
|
|
196
278
|
/**
|
|
197
279
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
|
|
198
280
|
*/
|
|
@@ -35,6 +35,10 @@ export type BedrockAgentCoreGatewayTargetProps = {
|
|
|
35
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html#cfn-bedrockagentcore-gatewaytarget-gatewayidentifier}
|
|
36
36
|
*/
|
|
37
37
|
GatewayIdentifier?: string | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html#cfn-bedrockagentcore-gatewaytarget-metadataconfiguration}
|
|
40
|
+
*/
|
|
41
|
+
MetadataConfiguration?: MetadataConfiguration | undefined;
|
|
38
42
|
/**
|
|
39
43
|
* The name for the gateway target.
|
|
40
44
|
* @pattern ^([0-9a-zA-Z][-]?){1,100}$
|
|
@@ -204,6 +208,23 @@ export type McpTargetConfiguration = {
|
|
|
204
208
|
} | {
|
|
205
209
|
McpServer: McpServerTargetConfiguration;
|
|
206
210
|
};
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-metadataconfiguration.html}
|
|
213
|
+
*/
|
|
214
|
+
export type MetadataConfiguration = {
|
|
215
|
+
/**
|
|
216
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-metadataconfiguration.html#cfn-bedrockagentcore-gatewaytarget-metadataconfiguration-allowedqueryparameters}
|
|
217
|
+
*/
|
|
218
|
+
AllowedQueryParameters?: string[] | undefined;
|
|
219
|
+
/**
|
|
220
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-metadataconfiguration.html#cfn-bedrockagentcore-gatewaytarget-metadataconfiguration-allowedrequestheaders}
|
|
221
|
+
*/
|
|
222
|
+
AllowedRequestHeaders?: string[] | undefined;
|
|
223
|
+
/**
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-metadataconfiguration.html#cfn-bedrockagentcore-gatewaytarget-metadataconfiguration-allowedresponseheaders}
|
|
225
|
+
*/
|
|
226
|
+
AllowedResponseHeaders?: string[] | undefined;
|
|
227
|
+
};
|
|
207
228
|
/**
|
|
208
229
|
* The OAuth credential provider for the gateway target.
|
|
209
230
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthcredentialprovider.html}
|
|
@@ -34,6 +34,11 @@ export type DataZoneEnvironmentBlueprintConfigurationProps = {
|
|
|
34
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentrolepermissionboundary}
|
|
35
35
|
*/
|
|
36
36
|
EnvironmentRolePermissionBoundary?: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* Region-agnostic environment blueprint parameters.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-globalparameters}
|
|
40
|
+
*/
|
|
41
|
+
GlobalParameters?: Record<string, string> | undefined;
|
|
37
42
|
/**
|
|
38
43
|
* The ARN of the manage access role.
|
|
39
44
|
* @pattern ^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)*/[a-zA-Z0-9+=,.@_-]+$
|
|
@@ -47,6 +47,10 @@ export type DataZoneProjectProfileProps = {
|
|
|
47
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-status}
|
|
48
48
|
*/
|
|
49
49
|
Status?: Status | undefined;
|
|
50
|
+
/**
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#cfn-datazone-projectprofile-usedefaultconfigurations}
|
|
52
|
+
*/
|
|
53
|
+
UseDefaultConfigurations?: boolean | undefined;
|
|
50
54
|
};
|
|
51
55
|
/**
|
|
52
56
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectprofile.html#aws-resource-datazone-projectprofile-return-values}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
|
|
5
|
+
*/
|
|
6
|
+
export type DocDBGlobalCluster = ResourceDefinitionWithAttributes<"AWS::DocDB::GlobalCluster", DocDBGlobalClusterProps, DocDBGlobalClusterAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
|
|
10
|
+
*/
|
|
11
|
+
export type DocDBGlobalClusterProps = {
|
|
12
|
+
/**
|
|
13
|
+
* Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-deletionprotection}
|
|
15
|
+
*/
|
|
16
|
+
DeletionProtection?: boolean | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The database engine to use for this global cluster.
|
|
19
|
+
* @default "docdb"
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engine}
|
|
21
|
+
*/
|
|
22
|
+
Engine: "docdb";
|
|
23
|
+
/**
|
|
24
|
+
* The engine version to use for this global cluster.
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engineversion}
|
|
26
|
+
*/
|
|
27
|
+
EngineVersion?: string | undefined;
|
|
28
|
+
/**
|
|
29
|
+
* The cluster identifier of the global cluster.
|
|
30
|
+
* @minLength 1
|
|
31
|
+
* @maxLength 63
|
|
32
|
+
* @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusteridentifier}
|
|
34
|
+
*/
|
|
35
|
+
GlobalClusterIdentifier: string;
|
|
36
|
+
/**
|
|
37
|
+
* The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
|
|
38
|
+
* @pattern ^(?=.{40,128}$)arn.*
|
|
39
|
+
* @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-sourcedbclusteridentifier}
|
|
41
|
+
*/
|
|
42
|
+
SourceDBClusterIdentifier?: string | undefined;
|
|
43
|
+
/**
|
|
44
|
+
* Indicates whether the global cluster has storage encryption enabled.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-storageencrypted}
|
|
46
|
+
*/
|
|
47
|
+
StorageEncrypted?: boolean | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* The tags to be assigned to the Amazon DocumentDB resource.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-tags}
|
|
51
|
+
*/
|
|
52
|
+
Tags?: Tag[] | undefined;
|
|
53
|
+
} | {
|
|
54
|
+
/**
|
|
55
|
+
* Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-deletionprotection}
|
|
57
|
+
*/
|
|
58
|
+
DeletionProtection?: boolean | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* The database engine to use for this global cluster.
|
|
61
|
+
* @default "docdb"
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engine}
|
|
63
|
+
*/
|
|
64
|
+
Engine?: "docdb" | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* The engine version to use for this global cluster.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-engineversion}
|
|
68
|
+
*/
|
|
69
|
+
EngineVersion?: string | undefined;
|
|
70
|
+
/**
|
|
71
|
+
* The cluster identifier of the global cluster.
|
|
72
|
+
* @minLength 1
|
|
73
|
+
* @maxLength 63
|
|
74
|
+
* @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusteridentifier}
|
|
76
|
+
*/
|
|
77
|
+
GlobalClusterIdentifier: string;
|
|
78
|
+
/**
|
|
79
|
+
* The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
|
|
80
|
+
* @pattern ^(?=.{40,128}$)arn.*
|
|
81
|
+
* @pattern ^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$
|
|
82
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-sourcedbclusteridentifier}
|
|
83
|
+
*/
|
|
84
|
+
SourceDBClusterIdentifier: string;
|
|
85
|
+
/**
|
|
86
|
+
* Indicates whether the global cluster has storage encryption enabled.
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-storageencrypted}
|
|
88
|
+
*/
|
|
89
|
+
StorageEncrypted?: boolean | undefined;
|
|
90
|
+
/**
|
|
91
|
+
* The tags to be assigned to the Amazon DocumentDB resource.
|
|
92
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-tags}
|
|
93
|
+
*/
|
|
94
|
+
Tags?: Tag[] | undefined;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#aws-resource-docdb-globalcluster-return-values}
|
|
98
|
+
*/
|
|
99
|
+
export type DocDBGlobalClusterAttribs = {
|
|
100
|
+
/**
|
|
101
|
+
* The Amazon Resource Name (ARN) for the global cluster.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusterarn}
|
|
103
|
+
*/
|
|
104
|
+
GlobalClusterArn: string;
|
|
105
|
+
/**
|
|
106
|
+
* The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB cluster is accessed.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#cfn-docdb-globalcluster-globalclusterresourceid}
|
|
108
|
+
*/
|
|
109
|
+
GlobalClusterResourceId: string;
|
|
110
|
+
};
|
|
111
|
+
//# sourceMappingURL=aws-docdb-globalcluster.d.ts.map
|
|
@@ -347,6 +347,9 @@ export type FleetLaunchTemplateOverridesRequest = {
|
|
|
347
347
|
*/
|
|
348
348
|
AvailabilityZone?: string | undefined;
|
|
349
349
|
/**
|
|
350
|
+
* The ID of the Availability Zone in which to launch the instances. For example, `use2-az1` .
|
|
351
|
+
*
|
|
352
|
+
* Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
|
|
350
353
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzoneid}
|
|
351
354
|
*/
|
|
352
355
|
AvailabilityZoneId?: string | undefined;
|
|
@@ -45,7 +45,7 @@ export type EC2IPAMPoolProps = {
|
|
|
45
45
|
* Limits which service in AWS that the pool can be used in. "ec2", for example, allows users to use space for Elastic IP addresses and VPCs.
|
|
46
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampool.html#cfn-ec2-ipampool-awsservice}
|
|
47
47
|
*/
|
|
48
|
-
AwsService?: "ec2" | undefined;
|
|
48
|
+
AwsService?: "ec2" | "global-services" | undefined;
|
|
49
49
|
/**
|
|
50
50
|
* The description of the IPAM pool.
|
|
51
51
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipampool.html#cfn-ec2-ipampool-description}
|
|
@@ -703,6 +703,9 @@ export type LaunchTemplateOverrides = {
|
|
|
703
703
|
*/
|
|
704
704
|
AvailabilityZone?: string | undefined;
|
|
705
705
|
/**
|
|
706
|
+
* The ID of the Availability Zone in which to launch the instances. For example, `use2-az1` .
|
|
707
|
+
*
|
|
708
|
+
* Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
|
|
706
709
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzoneid}
|
|
707
710
|
*/
|
|
708
711
|
AvailabilityZoneId?: string | undefined;
|
|
@@ -1216,6 +1219,11 @@ export type SpotPlacement = {
|
|
|
1216
1219
|
*/
|
|
1217
1220
|
AvailabilityZone?: string | undefined;
|
|
1218
1221
|
/**
|
|
1222
|
+
* The ID of the Availability Zone. For example, `use2-az1` .
|
|
1223
|
+
*
|
|
1224
|
+
* [Spot Fleet only] To specify multiple Availability Zones, separate them using commas; for example, " `use2-az1` , `use2-bz1` ".
|
|
1225
|
+
*
|
|
1226
|
+
* Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
|
|
1219
1227
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzoneid}
|
|
1220
1228
|
*/
|
|
1221
1229
|
AvailabilityZoneId?: string | undefined;
|
|
@@ -305,7 +305,7 @@ export type LocationCapacity = {
|
|
|
305
305
|
* @min 0
|
|
306
306
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationcapacity.html#cfn-gamelift-containerfleet-locationcapacity-minsize}
|
|
307
307
|
*/
|
|
308
|
-
MinSize
|
|
308
|
+
MinSize?: number | undefined;
|
|
309
309
|
};
|
|
310
310
|
/**
|
|
311
311
|
* A remote location where a multi-location fleet can deploy game servers for game hosting.
|
|
@@ -298,7 +298,7 @@ export type LocationCapacity = {
|
|
|
298
298
|
* @min 0
|
|
299
299
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-locationcapacity.html#cfn-gamelift-fleet-locationcapacity-minsize}
|
|
300
300
|
*/
|
|
301
|
-
MinSize
|
|
301
|
+
MinSize?: number | undefined;
|
|
302
302
|
};
|
|
303
303
|
/**
|
|
304
304
|
* A remote location where a multi-location fleet can deploy game servers for game hosting.
|
|
@@ -583,6 +583,13 @@ export type FilterConfiguration = {
|
|
|
583
583
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-clipstarttime}
|
|
584
584
|
*/
|
|
585
585
|
ClipStartTime?: string | undefined;
|
|
586
|
+
/**
|
|
587
|
+
* <p>Optionally specify one or more DRM settings for all of your manifest egress requests. When you include a DRM setting, note that you cannot use an identical DRM setting query parameter for this manifest's endpoint URL.</p>
|
|
588
|
+
* @minLength 1
|
|
589
|
+
* @maxLength 1024
|
|
590
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-filterconfiguration.html#cfn-mediapackagev2-originendpoint-filterconfiguration-drmsettings}
|
|
591
|
+
*/
|
|
592
|
+
DrmSettings?: string | undefined;
|
|
586
593
|
/**
|
|
587
594
|
* Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.
|
|
588
595
|
* @format date-time
|
|
@@ -786,6 +793,16 @@ export type Scte = {
|
|
|
786
793
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-scte.html#cfn-mediapackagev2-originendpoint-scte-sctefilter}
|
|
787
794
|
*/
|
|
788
795
|
ScteFilter?: ScteFilter[] | undefined;
|
|
796
|
+
/**
|
|
797
|
+
* Controls whether SCTE-35 messages are included in segment files.
|
|
798
|
+
*
|
|
799
|
+
* - None – SCTE-35 messages are not included in segments (default)
|
|
800
|
+
* - All – SCTE-35 messages are embedded in segment data
|
|
801
|
+
*
|
|
802
|
+
* For DASH manifests, when set to `All` , an `InbandEventStream` tag signals that SCTE messages are present in segments. This setting works independently of manifest ad markers.
|
|
803
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-scte.html#cfn-mediapackagev2-originendpoint-scte-scteinsegments}
|
|
804
|
+
*/
|
|
805
|
+
ScteInSegments?: ScteInSegments | undefined;
|
|
789
806
|
};
|
|
790
807
|
/**
|
|
791
808
|
* The SCTE configuration.
|
|
@@ -818,6 +835,10 @@ export type ScteHls = {
|
|
|
818
835
|
*/
|
|
819
836
|
AdMarkerHls?: AdMarkerHls | undefined;
|
|
820
837
|
};
|
|
838
|
+
/**
|
|
839
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-scteinsegments.html}
|
|
840
|
+
*/
|
|
841
|
+
export type ScteInSegments = "NONE" | "ALL";
|
|
821
842
|
/**
|
|
822
843
|
* The segment configuration, including the segment name, duration, and other configuration values.
|
|
823
844
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-segment.html}
|
|
@@ -869,6 +890,14 @@ export type Segment = {
|
|
|
869
890
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-spekekeyprovider.html}
|
|
870
891
|
*/
|
|
871
892
|
export type SpekeKeyProvider = {
|
|
893
|
+
/**
|
|
894
|
+
* <p>The ARN for the certificate that you imported to AWS Certificate Manager to add content key encryption to this endpoint. For this feature to work, your DRM key provider must support content key encryption.</p>
|
|
895
|
+
* @minLength 20
|
|
896
|
+
* @maxLength 2048
|
|
897
|
+
* @pattern ^arn:([^:\n]+):acm:([^:\n]+):([0-9]+):certificate/[a-zA-Z0-9-_]+$
|
|
898
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-spekekeyprovider.html#cfn-mediapackagev2-originendpoint-spekekeyprovider-certificatearn}
|
|
899
|
+
*/
|
|
900
|
+
CertificateArn?: string | undefined;
|
|
872
901
|
/**
|
|
873
902
|
* The DRM solution provider you're using to protect your content during distribution.
|
|
874
903
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-spekekeyprovider.html#cfn-mediapackagev2-originendpoint-spekekeyprovider-drmsystems}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in
|
|
3
|
+
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in Parallel Computing Service](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_clusters_create.html) in the *AWS PCS User Guide* .
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
|
|
5
5
|
*/
|
|
6
6
|
export type PCSCluster = ResourceDefinitionWithAttributes<"AWS::PCS::Cluster", PCSClusterProps, PCSClusterAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in
|
|
8
|
+
* Creates an AWS PCS cluster resource. For more information, see [Creating a cluster in Parallel Computing Service](https://docs.aws.amazon.com/pcs/latest/userguide/working-with_clusters_create.html) in the *AWS PCS User Guide* .
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
|
|
10
10
|
*/
|
|
11
11
|
export type PCSClusterProps = {
|