@propulsionworks/cloudformation 0.1.44 → 0.1.45

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.
@@ -90,6 +90,10 @@ export type BackupPlanResourceType = {
90
90
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-backupplanrule}
91
91
  */
92
92
  BackupPlanRule: BackupRuleResourceType[];
93
+ /**
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupplanresourcetype.html#cfn-backup-backupplan-backupplanresourcetype-scansettings}
95
+ */
96
+ ScanSettings?: ScanSettingResourceType[] | undefined;
93
97
  };
94
98
  /**
95
99
  * Specifies an object containing properties used to schedule a task to back up a selection of resources.
@@ -136,6 +140,10 @@ export type BackupRuleResourceType = {
136
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupruleresourcetype.html#cfn-backup-backupplan-backupruleresourcetype-rulename}
137
141
  */
138
142
  RuleName: string;
143
+ /**
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupruleresourcetype.html#cfn-backup-backupplan-backupruleresourcetype-scanactions}
145
+ */
146
+ ScanActions?: ScanActionResourceType[] | undefined;
139
147
  /**
140
148
  * A CRON expression specifying when AWS Backup initiates a backup job.
141
149
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-backupruleresourcetype.html#cfn-backup-backupplan-backupruleresourcetype-scheduleexpression}
@@ -219,4 +227,42 @@ export type LifecycleResourceType = {
219
227
  */
220
228
  OptInToArchiveForSupportedResources?: boolean | undefined;
221
229
  };
230
+ /**
231
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-malwarescanner.html}
232
+ */
233
+ export type MalwareScanner = "GUARDDUTY";
234
+ /**
235
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanactionresourcetype.html}
236
+ */
237
+ export type ScanActionResourceType = {
238
+ /**
239
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanactionresourcetype.html#cfn-backup-backupplan-scanactionresourcetype-malwarescanner}
240
+ */
241
+ MalwareScanner?: MalwareScanner | undefined;
242
+ /**
243
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanactionresourcetype.html#cfn-backup-backupplan-scanactionresourcetype-scanmode}
244
+ */
245
+ ScanMode?: ScanMode | undefined;
246
+ };
247
+ /**
248
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scanmode.html}
249
+ */
250
+ export type ScanMode = "FULL_SCAN" | "INCREMENTAL_SCAN";
251
+ /**
252
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scansettingresourcetype.html}
253
+ */
254
+ export type ScanSettingResourceType = {
255
+ /**
256
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scansettingresourcetype.html#cfn-backup-backupplan-scansettingresourcetype-malwarescanner}
257
+ */
258
+ MalwareScanner?: MalwareScanner | undefined;
259
+ /**
260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scansettingresourcetype.html#cfn-backup-backupplan-scansettingresourcetype-resourcetypes}
261
+ */
262
+ ResourceTypes?: string[] | undefined;
263
+ /**
264
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-backupplan-scansettingresourcetype.html#cfn-backup-backupplan-scansettingresourcetype-scannerrolearn}
265
+ */
266
+ ScannerRoleArn?: string | undefined;
267
+ };
222
268
  //# sourceMappingURL=aws-backup-backupplan.d.ts.map
@@ -0,0 +1,63 @@
1
+ import type { ResourceDefinitionWithAttributes } from "../main.ts";
2
+ /**
3
+ * Resource Type definition for AWS::Backup::TieringConfiguration
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html}
5
+ */
6
+ export type BackupTieringConfiguration = ResourceDefinitionWithAttributes<"AWS::Backup::TieringConfiguration", BackupTieringConfigurationProps, BackupTieringConfigurationAttribs>;
7
+ /**
8
+ * Resource Type definition for AWS::Backup::TieringConfiguration
9
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html}
10
+ */
11
+ export type BackupTieringConfigurationProps = {
12
+ /**
13
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-backupvaultname}
14
+ */
15
+ BackupVaultName: string;
16
+ /**
17
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-resourceselection}
18
+ */
19
+ ResourceSelection: ResourceSelection[];
20
+ /**
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-tieringconfigurationname}
22
+ */
23
+ TieringConfigurationName: string;
24
+ /**
25
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-tieringconfigurationtags}
26
+ */
27
+ TieringConfigurationTags?: Record<string, string> | undefined;
28
+ };
29
+ /**
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#aws-resource-backup-tieringconfiguration-return-values}
31
+ */
32
+ export type BackupTieringConfigurationAttribs = {
33
+ /**
34
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-creationtime}
35
+ */
36
+ CreationTime: string;
37
+ /**
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-lastupdatedtime}
39
+ */
40
+ LastUpdatedTime: string;
41
+ /**
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backup-tieringconfiguration.html#cfn-backup-tieringconfiguration-tieringconfigurationarn}
43
+ */
44
+ TieringConfigurationArn: string;
45
+ };
46
+ /**
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-tieringconfiguration-resourceselection.html}
48
+ */
49
+ export type ResourceSelection = {
50
+ /**
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-tieringconfiguration-resourceselection.html#cfn-backup-tieringconfiguration-resourceselection-resourcetype}
52
+ */
53
+ ResourceType: string;
54
+ /**
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-tieringconfiguration-resourceselection.html#cfn-backup-tieringconfiguration-resourceselection-resources}
56
+ */
57
+ Resources: string[];
58
+ /**
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-tieringconfiguration-resourceselection.html#cfn-backup-tieringconfiguration-resourceselection-tieringdownsettingsindays}
60
+ */
61
+ TieringDownSettingsInDays: number;
62
+ };
63
+ //# sourceMappingURL=aws-backup-tieringconfiguration.d.ts.map
@@ -21,7 +21,7 @@ export type BedrockAgentCoreGatewayTargetProps = {
21
21
  * The OAuth credential provider configuration.
22
22
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-gatewaytarget.html#cfn-bedrockagentcore-gatewaytarget-credentialproviderconfigurations}
23
23
  */
24
- CredentialProviderConfigurations: CredentialProviderConfiguration[];
24
+ CredentialProviderConfigurations?: CredentialProviderConfiguration[] | undefined;
25
25
  /**
26
26
  * The description for the gateway target.
27
27
  * @minLength 1
@@ -94,6 +94,70 @@ export type BedrockAgentCoreGatewayTargetAttribs = {
94
94
  */
95
95
  UpdatedAt: string;
96
96
  };
97
+ /**
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html}
99
+ */
100
+ export type ApiGatewayTargetConfiguration = {
101
+ /**
102
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration-apigatewaytoolconfiguration}
103
+ */
104
+ ApiGatewayToolConfiguration: ApiGatewayToolConfiguration;
105
+ /**
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration-restapiid}
107
+ */
108
+ RestApiId: string;
109
+ /**
110
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytargetconfiguration-stage}
111
+ */
112
+ Stage: string;
113
+ };
114
+ /**
115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration.html}
116
+ */
117
+ export type ApiGatewayToolConfiguration = {
118
+ /**
119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration-toolfilters}
120
+ */
121
+ ToolFilters: ApiGatewayToolFilter[];
122
+ /**
123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytoolconfiguration-tooloverrides}
124
+ */
125
+ ToolOverrides?: ApiGatewayToolOverride[] | undefined;
126
+ };
127
+ /**
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolfilter.html}
129
+ */
130
+ export type ApiGatewayToolFilter = {
131
+ /**
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolfilter.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytoolfilter-filterpath}
133
+ */
134
+ FilterPath: string;
135
+ /**
136
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytoolfilter.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytoolfilter-methods}
137
+ */
138
+ Methods: RestApiMethod[];
139
+ };
140
+ /**
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html}
142
+ */
143
+ export type ApiGatewayToolOverride = {
144
+ /**
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytooloverride-description}
146
+ */
147
+ Description?: string | undefined;
148
+ /**
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytooloverride-method}
150
+ */
151
+ Method: RestApiMethod;
152
+ /**
153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytooloverride-name}
154
+ */
155
+ Name: string;
156
+ /**
157
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apigatewaytooloverride.html#cfn-bedrockagentcore-gatewaytarget-apigatewaytooloverride-path}
158
+ */
159
+ Path: string;
160
+ };
97
161
  /**
98
162
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-apikeycredentiallocation.html}
99
163
  */
@@ -207,6 +271,8 @@ export type McpTargetConfiguration = {
207
271
  Lambda: McpLambdaTargetConfiguration;
208
272
  } | {
209
273
  McpServer: McpServerTargetConfiguration;
274
+ } | {
275
+ ApiGateway: ApiGatewayTargetConfiguration;
210
276
  };
211
277
  /**
212
278
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-metadataconfiguration.html}
@@ -263,6 +329,10 @@ export type OAuthCredentialProvider = {
263
329
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-oauthgranttype.html}
264
330
  */
265
331
  export type OAuthGrantType = "AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS";
332
+ /**
333
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-restapimethod.html}
334
+ */
335
+ export type RestApiMethod = "GET" | "DELETE" | "HEAD" | "OPTIONS" | "PATCH" | "PUT" | "POST";
266
336
  /**
267
337
  * The S3 configuration for the gateway target.
268
338
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gatewaytarget-s3configuration.html}
@@ -129,7 +129,7 @@ export type AnalysisParameter = {
129
129
  /**
130
130
  * Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.
131
131
  * @minLength 0
132
- * @maxLength 250
132
+ * @maxLength 1000
133
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-analysisparameter.html#cfn-cleanrooms-analysistemplate-analysisparameter-defaultvalue}
134
134
  */
135
135
  DefaultValue?: string | undefined;
@@ -124,7 +124,7 @@ export type AnalyticsEngine = "CLEAN_ROOMS_SQL" | "SPARK";
124
124
  /**
125
125
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-autoapprovedchangetype.html}
126
126
  */
127
- export type AutoApprovedChangeType = "ADD_MEMBER";
127
+ export type AutoApprovedChangeType = "ADD_MEMBER" | "GRANT_RECEIVE_RESULTS_ABILITY" | "REVOKE_RECEIVE_RESULTS_ABILITY";
128
128
  /**
129
129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-collaborationjoblogstatus.html}
130
130
  */
@@ -705,7 +705,6 @@ export type EvaluationReviewNotificationRecipient = {
705
705
  */
706
706
  Type: "USER_ID";
707
707
  /**
708
- * The value associated with the notification recipient type.
709
708
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationreviewnotificationrecipient.html#cfn-connect-evaluationform-evaluationreviewnotificationrecipient-value}
710
709
  */
711
710
  Value: EvaluationReviewNotificationRecipientValue;
@@ -9,6 +9,11 @@ export type DataZoneEnvironment = ResourceDefinitionWithAttributes<"AWS::DataZon
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html}
10
10
  */
11
11
  export type DataZoneEnvironmentProps = {
12
+ /**
13
+ * The deployment order for the environment.
14
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-deploymentorder}
15
+ */
16
+ DeploymentOrder?: number | undefined;
12
17
  /**
13
18
  * The description of the environment.
14
19
  * @maxLength 2048
@@ -33,6 +38,16 @@ export type DataZoneEnvironmentProps = {
33
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentaccountregion}
34
39
  */
35
40
  EnvironmentAccountRegion?: string | undefined;
41
+ /**
42
+ * The identifier of the environment blueprint.
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentblueprintidentifier}
44
+ */
45
+ EnvironmentBlueprintIdentifier?: string | undefined;
46
+ /**
47
+ * The identifier of the environment configuration.
48
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-environmentconfigurationid}
49
+ */
50
+ EnvironmentConfigurationId?: string | undefined;
36
51
  /**
37
52
  * The identifier of the environment profile that is used to create this Amazon DataZone environment.
38
53
  * @pattern ^[a-zA-Z0-9_-]{0,36}$
@@ -53,7 +68,6 @@ export type DataZoneEnvironmentProps = {
53
68
  * The name of the Amazon DataZone environment.
54
69
  * @minLength 1
55
70
  * @maxLength 64
56
- * @pattern ^[\w -]+$
57
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.html#cfn-datazone-environment-name}
58
72
  */
59
73
  Name: string;
@@ -0,0 +1,185 @@
1
+ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
+ /**
3
+ * Resource Schema of AWS::EMRContainers::Endpoint Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
5
+ */
6
+ export type EMRContainersEndpoint = ResourceDefinitionWithAttributes<"AWS::EMRContainers::Endpoint", EMRContainersEndpointProps, EMRContainersEndpointAttribs>;
7
+ /**
8
+ * Resource Schema of AWS::EMRContainers::Endpoint Type
9
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
10
+ */
11
+ export type EMRContainersEndpointProps = {
12
+ /**
13
+ * The configuration overrides for the managed endpoint.
14
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-configurationoverrides}
15
+ */
16
+ ConfigurationOverrides?: ConfigurationOverrides | undefined;
17
+ /**
18
+ * The execution role ARN for the managed endpoint.
19
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-executionrolearn}
20
+ */
21
+ ExecutionRoleArn: string;
22
+ /**
23
+ * The name of the managed endpoint.
24
+ * @minLength 1
25
+ * @maxLength 64
26
+ * @pattern [0-9A-Za-z][A-Za-z0-9\-_]*
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-name}
28
+ */
29
+ Name?: string | undefined;
30
+ /**
31
+ * The Amazon EMR release label.
32
+ * @minLength 1
33
+ * @maxLength 64
34
+ * @pattern [A-Za-z0-9._/-]+
35
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-releaselabel}
36
+ */
37
+ ReleaseLabel: string;
38
+ /**
39
+ * An array of key-value pairs to apply to this managed endpoint.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-tags}
41
+ */
42
+ Tags?: Tag[] | undefined;
43
+ /**
44
+ * The type of the managed endpoint.
45
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-type}
46
+ */
47
+ Type: string;
48
+ /**
49
+ * The ID of the virtual cluster for which the managed endpoint is created.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-virtualclusterid}
51
+ */
52
+ VirtualClusterId: string;
53
+ };
54
+ /**
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#aws-resource-emrcontainers-endpoint-return-values}
56
+ */
57
+ export type EMRContainersEndpointAttribs = {
58
+ /**
59
+ * The ARN of the managed endpoint.
60
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-arn}
61
+ */
62
+ Arn: string;
63
+ /**
64
+ * The date and time when the managed endpoint was created.
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-createdat}
66
+ */
67
+ CreatedAt: string;
68
+ /**
69
+ * The reason for a failed managed endpoint.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-failurereason}
71
+ */
72
+ FailureReason: string;
73
+ /**
74
+ * The ID of the managed endpoint.
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-id}
76
+ */
77
+ Id: string;
78
+ /**
79
+ * The security group associated with the managed endpoint.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-securitygroup}
81
+ */
82
+ SecurityGroup: string;
83
+ /**
84
+ * The server URL of the managed endpoint.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-serverurl}
86
+ */
87
+ ServerUrl: string;
88
+ /**
89
+ * The state of the managed endpoint.
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-state}
91
+ */
92
+ State: string;
93
+ /**
94
+ * Additional details about the state of the managed endpoint.
95
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#cfn-emrcontainers-endpoint-statedetails}
96
+ */
97
+ StateDetails: string;
98
+ };
99
+ /**
100
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-cloudwatchmonitoringconfiguration.html}
101
+ */
102
+ export type CloudWatchMonitoringConfiguration = {
103
+ /**
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-cloudwatchmonitoringconfiguration.html#cfn-emrcontainers-endpoint-cloudwatchmonitoringconfiguration-loggroupname}
105
+ */
106
+ LogGroupName: string;
107
+ /**
108
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-cloudwatchmonitoringconfiguration.html#cfn-emrcontainers-endpoint-cloudwatchmonitoringconfiguration-logstreamnameprefix}
109
+ */
110
+ LogStreamNamePrefix?: string | undefined;
111
+ };
112
+ /**
113
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-configurationoverrides.html}
114
+ */
115
+ export type ConfigurationOverrides = {
116
+ /**
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-configurationoverrides.html#cfn-emrcontainers-endpoint-configurationoverrides-applicationconfiguration}
118
+ */
119
+ ApplicationConfiguration?: EMREKSConfiguration[] | undefined;
120
+ /**
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-configurationoverrides.html#cfn-emrcontainers-endpoint-configurationoverrides-monitoringconfiguration}
122
+ */
123
+ MonitoringConfiguration?: MonitoringConfiguration | undefined;
124
+ };
125
+ /**
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-containerlogrotationconfiguration.html}
127
+ */
128
+ export type ContainerLogRotationConfiguration = {
129
+ /**
130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-containerlogrotationconfiguration.html#cfn-emrcontainers-endpoint-containerlogrotationconfiguration-maxfilestokeep}
131
+ */
132
+ MaxFilesToKeep: number;
133
+ /**
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-containerlogrotationconfiguration.html#cfn-emrcontainers-endpoint-containerlogrotationconfiguration-rotationsize}
135
+ */
136
+ RotationSize: string;
137
+ };
138
+ /**
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html}
140
+ */
141
+ export type EMREKSConfiguration = {
142
+ /**
143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html#cfn-emrcontainers-endpoint-emreksconfiguration-classification}
144
+ */
145
+ Classification: string;
146
+ /**
147
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html#cfn-emrcontainers-endpoint-emreksconfiguration-configurations}
148
+ */
149
+ Configurations?: EMREKSConfiguration[] | undefined;
150
+ /**
151
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html#cfn-emrcontainers-endpoint-emreksconfiguration-properties}
152
+ */
153
+ Properties?: Record<string, string> | undefined;
154
+ };
155
+ /**
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html}
157
+ */
158
+ export type MonitoringConfiguration = {
159
+ /**
160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html#cfn-emrcontainers-endpoint-monitoringconfiguration-cloudwatchmonitoringconfiguration}
161
+ */
162
+ CloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration | undefined;
163
+ /**
164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html#cfn-emrcontainers-endpoint-monitoringconfiguration-containerlogrotationconfiguration}
165
+ */
166
+ ContainerLogRotationConfiguration?: ContainerLogRotationConfiguration | undefined;
167
+ /**
168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html#cfn-emrcontainers-endpoint-monitoringconfiguration-persistentappui}
169
+ */
170
+ PersistentAppUI?: "ENABLED" | "DISABLED" | undefined;
171
+ /**
172
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html#cfn-emrcontainers-endpoint-monitoringconfiguration-s3monitoringconfiguration}
173
+ */
174
+ S3MonitoringConfiguration?: S3MonitoringConfiguration | undefined;
175
+ };
176
+ /**
177
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-s3monitoringconfiguration.html}
178
+ */
179
+ export type S3MonitoringConfiguration = {
180
+ /**
181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-s3monitoringconfiguration.html#cfn-emrcontainers-endpoint-s3monitoringconfiguration-loguri}
182
+ */
183
+ LogUri: string;
184
+ };
185
+ //# sourceMappingURL=aws-emrcontainers-endpoint.d.ts.map
@@ -0,0 +1,321 @@
1
+ import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
+ /**
3
+ * Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
5
+ */
6
+ export type EMRContainersSecurityConfiguration = ResourceDefinitionWithAttributes<"AWS::EMRContainers::SecurityConfiguration", EMRContainersSecurityConfigurationProps, EMRContainersSecurityConfigurationAttribs>;
7
+ /**
8
+ * Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
9
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
10
+ */
11
+ export type EMRContainersSecurityConfigurationProps = {
12
+ /**
13
+ * Container provider information.
14
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-containerprovider}
15
+ */
16
+ ContainerProvider?: ContainerProvider | undefined;
17
+ /**
18
+ * The name of the security configuration.
19
+ * @minLength 1
20
+ * @maxLength 64
21
+ * @pattern ^[a-zA-Z0-9\-_]+$
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-name}
23
+ */
24
+ Name?: string | undefined;
25
+ /**
26
+ * Security configuration data containing encryption and authorization settings.
27
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata}
28
+ */
29
+ SecurityConfigurationData: SecurityConfigurationData;
30
+ /**
31
+ * An array of key-value pairs to apply to this security configuration.
32
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-tags}
33
+ */
34
+ Tags?: Tag[] | undefined;
35
+ };
36
+ /**
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#aws-resource-emrcontainers-securityconfiguration-return-values}
38
+ */
39
+ export type EMRContainersSecurityConfigurationAttribs = {
40
+ /**
41
+ * The ARN of the security configuration.
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-arn}
43
+ */
44
+ Arn: string;
45
+ /**
46
+ * The ID of the security configuration.
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-id}
48
+ */
49
+ Id: string;
50
+ };
51
+ /**
52
+ * At-rest encryption configuration.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html}
54
+ */
55
+ export type AtRestEncryptionConfiguration = {
56
+ /**
57
+ * Local disk encryption configuration.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-atrestencryptionconfiguration-localdiskencryptionconfiguration}
59
+ */
60
+ LocalDiskEncryptionConfiguration?: LocalDiskEncryptionConfiguration | undefined;
61
+ /**
62
+ * S3 encryption configuration.
63
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-atrestencryptionconfiguration-s3encryptionconfiguration}
64
+ */
65
+ S3EncryptionConfiguration?: S3EncryptionConfiguration | undefined;
66
+ };
67
+ /**
68
+ * Authentication configuration for the security configuration.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html}
70
+ */
71
+ export type AuthenticationConfiguration = {
72
+ /**
73
+ * IAM configuration.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html#cfn-emrcontainers-securityconfiguration-authenticationconfiguration-iamconfiguration}
75
+ */
76
+ IAMConfiguration?: IAMConfiguration | undefined;
77
+ /**
78
+ * Identity Center configuration.
79
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html#cfn-emrcontainers-securityconfiguration-authenticationconfiguration-identitycenterconfiguration}
80
+ */
81
+ IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
82
+ };
83
+ /**
84
+ * Authorization configuration for the security configuration.
85
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html}
86
+ */
87
+ export type AuthorizationConfiguration = {
88
+ /**
89
+ * Lake Formation configuration.
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html#cfn-emrcontainers-securityconfiguration-authorizationconfiguration-lakeformationconfiguration}
91
+ */
92
+ LakeFormationConfiguration?: LakeFormationConfiguration | undefined;
93
+ };
94
+ /**
95
+ * Container information.
96
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html}
97
+ */
98
+ export type ContainerInfo = {
99
+ /**
100
+ * EKS information.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html#cfn-emrcontainers-securityconfiguration-containerinfo-eksinfo}
102
+ */
103
+ EksInfo?: EksInfo | undefined;
104
+ };
105
+ /**
106
+ * Container provider information.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html}
108
+ */
109
+ export type ContainerProvider = {
110
+ /**
111
+ * The container provider ID.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-id}
113
+ */
114
+ Id: string;
115
+ /**
116
+ * Container information.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-info}
118
+ */
119
+ Info?: ContainerInfo | undefined;
120
+ /**
121
+ * The container provider type.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-type}
123
+ */
124
+ Type: "EKS";
125
+ };
126
+ /**
127
+ * EKS information.
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html}
129
+ */
130
+ export type EksInfo = {
131
+ /**
132
+ * The EKS namespace.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html#cfn-emrcontainers-securityconfiguration-eksinfo-namespace}
134
+ */
135
+ Namespace?: string | undefined;
136
+ };
137
+ /**
138
+ * Encryption configuration for the security configuration.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html}
140
+ */
141
+ export type EncryptionConfiguration = {
142
+ /**
143
+ * At-rest encryption configuration.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-encryptionconfiguration-atrestencryptionconfiguration}
145
+ */
146
+ AtRestEncryptionConfiguration?: AtRestEncryptionConfiguration | undefined;
147
+ /**
148
+ * In-transit encryption configuration.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-encryptionconfiguration-intransitencryptionconfiguration}
150
+ */
151
+ InTransitEncryptionConfiguration?: InTransitEncryptionConfiguration | undefined;
152
+ };
153
+ /**
154
+ * IAM configuration.
155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html}
156
+ */
157
+ export type IAMConfiguration = {
158
+ /**
159
+ * The system role ARN.
160
+ * @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$
161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html#cfn-emrcontainers-securityconfiguration-iamconfiguration-systemrole}
162
+ */
163
+ SystemRole?: string | undefined;
164
+ };
165
+ /**
166
+ * Identity Center configuration.
167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html}
168
+ */
169
+ export type IdentityCenterConfiguration = {
170
+ /**
171
+ * Whether to enable Identity Center integration.
172
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-enableidentitycenter}
173
+ */
174
+ EnableIdentityCenter?: boolean | undefined;
175
+ /**
176
+ * Whether Identity Center application assignment is required.
177
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-identitycenterapplicationassignmentrequired}
178
+ */
179
+ IdentityCenterApplicationAssignmentRequired?: boolean | undefined;
180
+ /**
181
+ * The ARN of the Identity Center instance.
182
+ * @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-identitycenterinstancearn}
184
+ */
185
+ IdentityCenterInstanceARN?: string | undefined;
186
+ };
187
+ /**
188
+ * In-transit encryption configuration.
189
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html}
190
+ */
191
+ export type InTransitEncryptionConfiguration = {
192
+ /**
193
+ * TLS certificate configuration for in-transit encryption.
194
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-intransitencryptionconfiguration-tlscertificateconfiguration}
195
+ */
196
+ TLSCertificateConfiguration?: TLSCertificateConfiguration | undefined;
197
+ };
198
+ /**
199
+ * Lake Formation configuration.
200
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html}
201
+ */
202
+ export type LakeFormationConfiguration = {
203
+ /**
204
+ * The session tag to authorize Lake Formation access.
205
+ * @minLength 1
206
+ * @maxLength 256
207
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-authorizedsessiontagvalue}
208
+ */
209
+ AuthorizedSessionTagValue?: string | undefined;
210
+ /**
211
+ * Whether query access control is enabled.
212
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-queryaccesscontrolenabled}
213
+ */
214
+ QueryAccessControlEnabled?: boolean | undefined;
215
+ /**
216
+ * The ARN of the query engine role.
217
+ * @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$
218
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-queryenginerolearn}
219
+ */
220
+ QueryEngineRoleArn?: string | undefined;
221
+ /**
222
+ * Secure namespace information for Lake Formation.
223
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-securenamespaceinfo}
224
+ */
225
+ SecureNamespaceInfo?: SecureNamespaceInfo | undefined;
226
+ };
227
+ /**
228
+ * Local disk encryption configuration.
229
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html}
230
+ */
231
+ export type LocalDiskEncryptionConfiguration = {
232
+ /**
233
+ * The AWS KMS key ID.
234
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-localdiskencryptionconfiguration-awskmskeyid}
235
+ */
236
+ AwsKmsKeyId?: string | undefined;
237
+ /**
238
+ * The encryption key provider type.
239
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-localdiskencryptionconfiguration-encryptionkeyprovidertype}
240
+ */
241
+ EncryptionKeyProviderType?: "AwsKms" | undefined;
242
+ };
243
+ /**
244
+ * S3 encryption configuration.
245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html}
246
+ */
247
+ export type S3EncryptionConfiguration = {
248
+ /**
249
+ * The S3 encryption option.
250
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-s3encryptionconfiguration-encryptionoption}
251
+ */
252
+ EncryptionOption?: "SSE-S3" | "SSE-KMS" | "CSE-KMS" | undefined;
253
+ /**
254
+ * The KMS key ID for encryption.
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-s3encryptionconfiguration-kmskeyid}
256
+ */
257
+ KMSKeyId?: string | undefined;
258
+ };
259
+ /**
260
+ * Secure namespace information for Lake Formation.
261
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html}
262
+ */
263
+ export type SecureNamespaceInfo = {
264
+ /**
265
+ * The ID of the cluster.
266
+ * @minLength 1
267
+ * @maxLength 100
268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html#cfn-emrcontainers-securityconfiguration-securenamespaceinfo-clusterid}
269
+ */
270
+ ClusterId?: string | undefined;
271
+ /**
272
+ * The namespace.
273
+ * @minLength 1
274
+ * @maxLength 63
275
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html#cfn-emrcontainers-securityconfiguration-securenamespaceinfo-namespace}
276
+ */
277
+ Namespace?: string | undefined;
278
+ };
279
+ /**
280
+ * Security configuration data containing encryption and authorization settings.
281
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html}
282
+ */
283
+ export type SecurityConfigurationData = {
284
+ /**
285
+ * Authentication configuration for the security configuration.
286
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-authenticationconfiguration}
287
+ */
288
+ AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
289
+ /**
290
+ * Authorization configuration for the security configuration.
291
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-authorizationconfiguration}
292
+ */
293
+ AuthorizationConfiguration?: AuthorizationConfiguration | undefined;
294
+ /**
295
+ * Encryption configuration for the security configuration.
296
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-encryptionconfiguration}
297
+ */
298
+ EncryptionConfiguration?: EncryptionConfiguration | undefined;
299
+ };
300
+ /**
301
+ * TLS certificate configuration for in-transit encryption.
302
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html}
303
+ */
304
+ export type TLSCertificateConfiguration = {
305
+ /**
306
+ * The certificate provider type.
307
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-certificateprovidertype}
308
+ */
309
+ CertificateProviderType?: "PEM" | undefined;
310
+ /**
311
+ * The ARN of the secret containing the private key.
312
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-privatekeysecretarn}
313
+ */
314
+ PrivateKeySecretArn?: string | undefined;
315
+ /**
316
+ * The ARN of the secret containing the public key.
317
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-publickeysecretarn}
318
+ */
319
+ PublicKeySecretArn?: string | undefined;
320
+ };
321
+ //# sourceMappingURL=aws-emrcontainers-securityconfiguration.d.ts.map
@@ -32,6 +32,11 @@ export type IoTLoggingProps = {
32
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-logging.html#cfn-iot-logging-defaultloglevel}
33
33
  */
34
34
  DefaultLogLevel: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED";
35
+ /**
36
+ * Configurations for event-based logging that specifies which event types to log and their logging settings. Overrides account-level logging for the specified event
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-logging.html#cfn-iot-logging-eventconfigurations}
38
+ */
39
+ EventConfigurations?: EventConfiguration[] | undefined;
35
40
  /**
36
41
  * The role ARN used for the log.
37
42
  * @minLength 20
@@ -40,4 +45,30 @@ export type IoTLoggingProps = {
40
45
  */
41
46
  RoleArn: string;
42
47
  };
48
+ /**
49
+ * Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html}
51
+ */
52
+ export type EventConfiguration = {
53
+ /**
54
+ * The type of event to log. These include event types like Connect, Publish, and Disconnect.
55
+ * @minLength 1
56
+ * @maxLength 512
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-eventtype}
58
+ */
59
+ EventType: string;
60
+ /**
61
+ * CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
62
+ * @minLength 1
63
+ * @maxLength 512
64
+ * @pattern ^(?!aws/)[a-zA-Z0-9_\-/.#]+$
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-logdestination}
66
+ */
67
+ LogDestination?: string | undefined;
68
+ /**
69
+ * The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-loglevel}
71
+ */
72
+ LogLevel?: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED" | undefined;
73
+ };
43
74
  //# sourceMappingURL=aws-iot-logging.d.ts.map
@@ -55,6 +55,10 @@ export type MediaLiveChannelProps = {
55
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-inputspecification}
56
56
  */
57
57
  InputSpecification?: InputSpecification | undefined;
58
+ /**
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-linkedchannelsettings}
60
+ */
61
+ LinkedChannelSettings?: LinkedChannelSettings | undefined;
58
62
  /**
59
63
  * The verbosity for logging activity for this channel. Charges for logging (which are generated through Amazon CloudWatch Logging) are higher for higher verbosities.
60
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel}
@@ -2012,6 +2016,19 @@ export type Fmp4HlsSettings = {
2012
2016
  */
2013
2017
  TimedMetadataBehavior?: string | undefined;
2014
2018
  };
2019
+ /**
2020
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html}
2021
+ */
2022
+ export type FollowerChannelSettings = {
2023
+ /**
2024
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html#cfn-medialive-channel-followerchannelsettings-linkedchanneltype}
2025
+ */
2026
+ LinkedChannelType?: string | undefined;
2027
+ /**
2028
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html#cfn-medialive-channel-followerchannelsettings-primarychannelarn}
2029
+ */
2030
+ PrimaryChannelArn?: string | undefined;
2031
+ };
2015
2032
  /**
2016
2033
  * Settings to configure the destination of a Frame Capture output.
2017
2034
  *
@@ -3417,6 +3434,19 @@ export type KeyProviderSettings = {
3417
3434
  */
3418
3435
  StaticKeySettings?: StaticKeySettings | undefined;
3419
3436
  };
3437
+ /**
3438
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html}
3439
+ */
3440
+ export type LinkedChannelSettings = {
3441
+ /**
3442
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html#cfn-medialive-channel-linkedchannelsettings-followerchannelsettings}
3443
+ */
3444
+ FollowerChannelSettings?: FollowerChannelSettings | undefined;
3445
+ /**
3446
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html#cfn-medialive-channel-linkedchannelsettings-primarychannelsettings}
3447
+ */
3448
+ PrimaryChannelSettings?: PrimaryChannelSettings | undefined;
3449
+ };
3420
3450
  /**
3421
3451
  * The configuration of the M2TS in the output.
3422
3452
  *
@@ -4617,7 +4647,7 @@ export type OutputLockingSettings = {
4617
4647
  /**
4618
4648
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-outputlockingsettings.html#cfn-medialive-channel-outputlockingsettings-pipelinelockingsettings}
4619
4649
  */
4620
- PipelineLockingSettings?: Record<string, unknown> | undefined;
4650
+ PipelineLockingSettings?: PipelineLockingSettings | undefined;
4621
4651
  };
4622
4652
  /**
4623
4653
  * The output settings.
@@ -4685,6 +4715,24 @@ export type OutputSettings = {
4685
4715
  */
4686
4716
  UdpOutputSettings?: UdpOutputSettings | undefined;
4687
4717
  };
4718
+ /**
4719
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html}
4720
+ */
4721
+ export type PipelineLockingSettings = {
4722
+ /**
4723
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html#cfn-medialive-channel-pipelinelockingsettings-pipelinelockingmethod}
4724
+ */
4725
+ PipelineLockingMethod?: string | undefined;
4726
+ };
4727
+ /**
4728
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html}
4729
+ */
4730
+ export type PrimaryChannelSettings = {
4731
+ /**
4732
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html#cfn-medialive-channel-primarychannelsettings-linkedchanneltype}
4733
+ */
4734
+ LinkedChannelType?: string | undefined;
4735
+ };
4688
4736
  /**
4689
4737
  * The settings for remixing audio in the output.
4690
4738
  *
@@ -0,0 +1,134 @@
1
+ import type { ResourceDefinitionWithAttributes } from "../main.ts";
2
+ /**
3
+ * Resource Type definition for AWS::MWAAServerless::Workflow resource
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html}
5
+ */
6
+ export type MWAAServerlessWorkflow = ResourceDefinitionWithAttributes<"AWS::MWAAServerless::Workflow", MWAAServerlessWorkflowProps, MWAAServerlessWorkflowAttribs>;
7
+ /**
8
+ * Resource Type definition for AWS::MWAAServerless::Workflow resource
9
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html}
10
+ */
11
+ export type MWAAServerlessWorkflowProps = {
12
+ /**
13
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-definitions3location}
14
+ */
15
+ DefinitionS3Location: S3Location;
16
+ /**
17
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-description}
18
+ */
19
+ Description?: string | undefined;
20
+ /**
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-encryptionconfiguration}
22
+ */
23
+ EncryptionConfiguration?: EncryptionConfiguration | undefined;
24
+ /**
25
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-loggingconfiguration}
26
+ */
27
+ LoggingConfiguration?: LoggingConfiguration | undefined;
28
+ /**
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-name}
30
+ */
31
+ Name?: string | undefined;
32
+ /**
33
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-networkconfiguration}
34
+ */
35
+ NetworkConfiguration?: NetworkConfiguration | undefined;
36
+ /**
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-rolearn}
38
+ */
39
+ RoleArn: string;
40
+ /**
41
+ * A map of key-value pairs to be applied as tags
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-tags}
43
+ */
44
+ Tags?: Record<string, string> | undefined;
45
+ /**
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-triggermode}
47
+ */
48
+ TriggerMode?: string | undefined;
49
+ };
50
+ /**
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#aws-resource-mwaaserverless-workflow-return-values}
52
+ */
53
+ export type MWAAServerlessWorkflowAttribs = {
54
+ /**
55
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-createdat}
56
+ */
57
+ CreatedAt: string;
58
+ /**
59
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-modifiedat}
60
+ */
61
+ ModifiedAt: string;
62
+ /**
63
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-workflowarn}
64
+ */
65
+ WorkflowArn: string;
66
+ /**
67
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-workflowstatus}
68
+ */
69
+ WorkflowStatus: WorkflowStatus;
70
+ /**
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mwaaserverless-workflow.html#cfn-mwaaserverless-workflow-workflowversion}
72
+ */
73
+ WorkflowVersion: string;
74
+ };
75
+ /**
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-encryptionconfiguration.html}
77
+ */
78
+ export type EncryptionConfiguration = {
79
+ /**
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-encryptionconfiguration.html#cfn-mwaaserverless-workflow-encryptionconfiguration-kmskeyid}
81
+ */
82
+ KmsKeyId?: string | undefined;
83
+ /**
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-encryptionconfiguration.html#cfn-mwaaserverless-workflow-encryptionconfiguration-type}
85
+ */
86
+ Type: "AWS_MANAGED_KEY" | "CUSTOMER_MANAGED_KEY";
87
+ };
88
+ /**
89
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-loggingconfiguration.html}
90
+ */
91
+ export type LoggingConfiguration = {
92
+ /**
93
+ * @minLength 1
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-loggingconfiguration.html#cfn-mwaaserverless-workflow-loggingconfiguration-loggroupname}
95
+ */
96
+ LogGroupName: string;
97
+ };
98
+ /**
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-networkconfiguration.html}
100
+ */
101
+ export type NetworkConfiguration = {
102
+ /**
103
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-networkconfiguration.html#cfn-mwaaserverless-workflow-networkconfiguration-securitygroupids}
104
+ */
105
+ SecurityGroupIds?: string[] | undefined;
106
+ /**
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-networkconfiguration.html#cfn-mwaaserverless-workflow-networkconfiguration-subnetids}
108
+ */
109
+ SubnetIds?: string[] | undefined;
110
+ };
111
+ /**
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-s3location.html}
113
+ */
114
+ export type S3Location = {
115
+ /**
116
+ * @minLength 1
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-s3location.html#cfn-mwaaserverless-workflow-s3location-bucket}
118
+ */
119
+ Bucket: string;
120
+ /**
121
+ * @minLength 1
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-s3location.html#cfn-mwaaserverless-workflow-s3location-objectkey}
123
+ */
124
+ ObjectKey: string;
125
+ /**
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-s3location.html#cfn-mwaaserverless-workflow-s3location-versionid}
127
+ */
128
+ VersionId?: string | undefined;
129
+ };
130
+ /**
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mwaaserverless-workflow-workflowstatus.html}
132
+ */
133
+ export type WorkflowStatus = "READY" | "DELETING";
134
+ //# sourceMappingURL=aws-mwaaserverless-workflow.d.ts.map
@@ -13,12 +13,22 @@ export type OpenSearchServerlessCollection = ResourceDefinitionWithAttributes<"A
13
13
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
14
14
  */
15
15
  export type OpenSearchServerlessCollectionProps = {
16
+ /**
17
+ * The name of the collection group to associate with the collection.
18
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-collectiongroupname}
19
+ */
20
+ CollectionGroupName?: string | undefined;
16
21
  /**
17
22
  * A description of the collection.
18
23
  * @maxLength 1000
19
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-description}
20
25
  */
21
26
  Description?: string | undefined;
27
+ /**
28
+ * Encryption settings for the collection
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-encryptionconfig}
30
+ */
31
+ EncryptionConfig?: EncryptionConfig | undefined;
22
32
  /**
23
33
  * The name of the collection.
24
34
  *
@@ -89,6 +99,22 @@ export type OpenSearchServerlessCollectionAttribs = {
89
99
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
90
100
  */
91
101
  export type CollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
102
+ /**
103
+ * Encryption settings for the collection
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
105
+ */
106
+ export type EncryptionConfig = {
107
+ /**
108
+ * Indicates whether to use an AWS owned key for encryption.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html#cfn-opensearchserverless-collection-encryptionconfig-awsownedkey}
110
+ */
111
+ AWSOwnedKey?: boolean | undefined;
112
+ /**
113
+ * Key Management Service key used to encrypt the collection.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html#cfn-opensearchserverless-collection-encryptionconfig-kmskeyarn}
115
+ */
116
+ KmsKeyArn?: string | undefined;
117
+ };
92
118
  /**
93
119
  * The possible standby replicas for the collection
94
120
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-standbyreplicas.html}
@@ -90,7 +90,7 @@ export type OrganizationsPolicyProps = {
90
90
  * The type of policy to create.
91
91
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-policy.html#cfn-organizations-policy-type}
92
92
  */
93
- Type: "SERVICE_CONTROL_POLICY" | "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "TAG_POLICY" | "CHATBOT_POLICY" | "RESOURCE_CONTROL_POLICY" | "DECLARATIVE_POLICY_EC2" | "SECURITYHUB_POLICY" | "S3_POLICY" | "INSPECTOR_POLICY" | "BEDROCK_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "UPGRADE_ROLLOUT_POLICY";
93
+ Type: "AISERVICES_OPT_OUT_POLICY" | "BACKUP_POLICY" | "BEDROCK_POLICY" | "CHATBOT_POLICY" | "DECLARATIVE_POLICY_EC2" | "INSPECTOR_POLICY" | "NETWORK_SECURITY_DIRECTOR_POLICY" | "RESOURCE_CONTROL_POLICY" | "S3_POLICY" | "SECURITYHUB_POLICY" | "SERVICE_CONTROL_POLICY" | "TAG_POLICY" | "UPGRADE_ROLLOUT_POLICY";
94
94
  };
95
95
  /**
96
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-policy.html#aws-resource-organizations-policy-return-values}
@@ -74,6 +74,7 @@ export type RDSDBInstance = ResourceDefinitionWithAttributes<"AWS::RDS::DBInstan
74
74
  */
75
75
  export type RDSDBInstanceProps = {
76
76
  /**
77
+ * The additional storage volumes associated with the DB instance. RDS supports additional storage volumes for RDS for Oracle and RDS for SQL Server.
77
78
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-additionalstoragevolumes}
78
79
  */
79
80
  AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
@@ -1369,17 +1370,19 @@ export type AdditionalStorageVolume = {
1369
1370
  */
1370
1371
  MaxAllocatedStorage?: number | undefined;
1371
1372
  /**
1372
- * The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
1373
+ * The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD (``gp3``) storage type.
1373
1374
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagethroughput}
1374
1375
  */
1375
1376
  StorageThroughput?: number | undefined;
1376
1377
  /**
1377
1378
  * The storage type for the additional storage volume.
1379
+ * Valid Values: ``GP3 | IO2``
1378
1380
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagetype}
1379
1381
  */
1380
1382
  StorageType?: string | undefined;
1381
1383
  /**
1382
1384
  * The name of the additional storage volume.
1385
+ * Valid Values: ``RDSDBDATA2 | RDSDBDATA3 | RDSDBDATA4``
1383
1386
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-volumename}
1384
1387
  */
1385
1388
  VolumeName?: string | undefined;
@@ -61,12 +61,12 @@ export type NotificationChannel = "ALL";
61
61
  */
62
62
  export type NotificationEvent = "CA_CERTIFICATE_EXPIRY" | "END_ENTITY_CERTIFICATE_EXPIRY";
63
63
  /**
64
- * Customizable notification settings that will be applied to notification events. IAM Roles Anywhere consumes these settings while notifying across multiple channels - CloudWatch metrics, EventBridge, and AWS Health Dashboard .
64
+ * Customizable notification settings that will be applied to notification events. IAM Roles Anywhere consumes these settings while notifying across multiple channels - CloudWatch metrics, EventBridge, and Health Dashboard .
65
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-notificationsetting.html}
66
66
  */
67
67
  export type NotificationSetting = {
68
68
  /**
69
- * The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and AWS Health Dashboard to notify for an event.
69
+ * The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health Dashboard to notify for an event.
70
70
  *
71
71
  * > In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
72
72
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-trustanchor-notificationsetting.html#cfn-rolesanywhere-trustanchor-notificationsetting-channel}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@propulsionworks/cloudformation",
3
- "version": "0.1.44",
3
+ "version": "0.1.45",
4
4
  "author": {
5
5
  "name": "Gordon Leigh"
6
6
  },