@awboost/cfn-resource-types 0.1.353 → 0.1.355
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.
|
@@ -129,6 +129,29 @@ export type EngineVersion = {
|
|
|
129
129
|
*/
|
|
130
130
|
SelectedEngineVersion?: string;
|
|
131
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* Type definition for `AWS::Athena::WorkGroup.ManagedQueryResultsConfiguration`.
|
|
134
|
+
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedqueryresultsconfiguration.html}
|
|
136
|
+
*/
|
|
137
|
+
export type ManagedQueryResultsConfiguration = {
|
|
138
|
+
Enabled?: boolean;
|
|
139
|
+
/**
|
|
140
|
+
* Indicates the encryption configuration for Athena Managed Storage. If not setting this field, Managed Storage will encrypt the query results with Athena's encryption key
|
|
141
|
+
*/
|
|
142
|
+
EncryptionConfiguration?: ManagedStorageEncryptionConfiguration;
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::Athena::WorkGroup.ManagedStorageEncryptionConfiguration`.
|
|
146
|
+
* Indicates the encryption configuration for Athena Managed Storage. If not setting this field, Managed Storage will encrypt the query results with Athena's encryption key
|
|
147
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-athena-workgroup-managedstorageencryptionconfiguration.html}
|
|
148
|
+
*/
|
|
149
|
+
export type ManagedStorageEncryptionConfiguration = {
|
|
150
|
+
/**
|
|
151
|
+
* For SSE-KMS and CSE-KMS, this is the KMS key ARN or ID.
|
|
152
|
+
*/
|
|
153
|
+
KmsKey?: string;
|
|
154
|
+
};
|
|
132
155
|
/**
|
|
133
156
|
* Type definition for `AWS::Athena::WorkGroup.ResultConfiguration`.
|
|
134
157
|
* The location in Amazon S3 where query results are stored and the encryption option, if any, used for query results. These are known as "client-side settings". If workgroup settings override client-side settings, then the query uses the workgroup settings.
|
|
@@ -232,6 +255,10 @@ export type WorkGroupConfiguration = {
|
|
|
232
255
|
* Execution Role ARN required to run Athena Spark Calculations
|
|
233
256
|
*/
|
|
234
257
|
ExecutionRole?: string;
|
|
258
|
+
/**
|
|
259
|
+
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
260
|
+
*/
|
|
261
|
+
ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration;
|
|
235
262
|
/**
|
|
236
263
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
237
264
|
*/
|
|
@@ -277,6 +304,10 @@ export type WorkGroupConfigurationUpdates = {
|
|
|
277
304
|
* Execution Role ARN required to run Athena Spark Calculations
|
|
278
305
|
*/
|
|
279
306
|
ExecutionRole?: string;
|
|
307
|
+
/**
|
|
308
|
+
* The configuration for the managed query results and encryption option. ResultConfiguration and ManagedQueryResultsConfiguration cannot be set at the same time
|
|
309
|
+
*/
|
|
310
|
+
ManagedQueryResultsConfiguration?: ManagedQueryResultsConfiguration;
|
|
280
311
|
/**
|
|
281
312
|
* Indicates that the Amazon CloudWatch metrics are enabled for the workgroup.
|
|
282
313
|
*/
|
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2EgressOnlyInternetGatewayProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Any tags assigned to the egress only internet gateway.
|
|
10
|
+
*/
|
|
11
|
+
Tags?: Tag[];
|
|
8
12
|
/**
|
|
9
13
|
* The ID of the VPC for which to create the egress-only internet gateway.
|
|
10
14
|
*/
|
|
@@ -20,6 +24,21 @@ export type EC2EgressOnlyInternetGatewayAttributes = {
|
|
|
20
24
|
*/
|
|
21
25
|
Id: string;
|
|
22
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* Type definition for `AWS::EC2::EgressOnlyInternetGateway.Tag`.
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-egressonlyinternetgateway-tag.html}
|
|
30
|
+
*/
|
|
31
|
+
export type Tag = {
|
|
32
|
+
/**
|
|
33
|
+
* @minLength `1`
|
|
34
|
+
* @maxLength `128`
|
|
35
|
+
*/
|
|
36
|
+
Key: string;
|
|
37
|
+
/**
|
|
38
|
+
* @maxLength `256`
|
|
39
|
+
*/
|
|
40
|
+
Value: string;
|
|
41
|
+
};
|
|
23
42
|
/**
|
|
24
43
|
* Resource Type definition for AWS::EC2::EgressOnlyInternetGateway
|
|
25
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-egressonlyinternetgateway.html}
|
|
@@ -11,6 +11,10 @@ export type EKSPodIdentityAssociationProperties = {
|
|
|
11
11
|
* @minLength `1`
|
|
12
12
|
*/
|
|
13
13
|
ClusterName: string;
|
|
14
|
+
/**
|
|
15
|
+
* The Disable Session Tags of the pod identity association.
|
|
16
|
+
*/
|
|
17
|
+
DisableSessionTags?: boolean;
|
|
14
18
|
/**
|
|
15
19
|
* The Kubernetes namespace that the pod identity association is created for.
|
|
16
20
|
*/
|
|
@@ -27,6 +31,11 @@ export type EKSPodIdentityAssociationProperties = {
|
|
|
27
31
|
* An array of key-value pairs to apply to this resource.
|
|
28
32
|
*/
|
|
29
33
|
Tags?: Tag[];
|
|
34
|
+
/**
|
|
35
|
+
* The Target Role Arn of the pod identity association.
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
*/
|
|
38
|
+
TargetRoleArn?: string;
|
|
30
39
|
};
|
|
31
40
|
/**
|
|
32
41
|
* Attribute type definition for `AWS::EKS::PodIdentityAssociation`.
|
|
@@ -42,6 +51,11 @@ export type EKSPodIdentityAssociationAttributes = {
|
|
|
42
51
|
* @minLength `1`
|
|
43
52
|
*/
|
|
44
53
|
AssociationId: string;
|
|
54
|
+
/**
|
|
55
|
+
* The External Id of the pod identity association.
|
|
56
|
+
* @minLength `1`
|
|
57
|
+
*/
|
|
58
|
+
ExternalId: string;
|
|
45
59
|
};
|
|
46
60
|
/**
|
|
47
61
|
* Type definition for `AWS::EKS::PodIdentityAssociation.Tag`.
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-loggingconfiguration.html}
|
|
6
6
|
*/
|
|
7
7
|
export type NetworkFirewallLoggingConfigurationProperties = {
|
|
8
|
+
EnableMonitoringDashboard?: boolean;
|
|
8
9
|
/**
|
|
9
10
|
* A resource ARN.
|
|
10
11
|
* @minLength `1`
|
|
@@ -332,6 +332,10 @@ export type DomainSettings = {
|
|
|
332
332
|
* @maxLength `3`
|
|
333
333
|
*/
|
|
334
334
|
SecurityGroupIds?: string[];
|
|
335
|
+
/**
|
|
336
|
+
* A collection of settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
337
|
+
*/
|
|
338
|
+
UnifiedStudioSettings?: UnifiedStudioSettings;
|
|
335
339
|
};
|
|
336
340
|
/**
|
|
337
341
|
* Type definition for `AWS::SageMaker::Domain.EFSFileSystemConfig`.
|
|
@@ -644,6 +648,61 @@ export type Tag = {
|
|
|
644
648
|
*/
|
|
645
649
|
Value: string;
|
|
646
650
|
};
|
|
651
|
+
/**
|
|
652
|
+
* Type definition for `AWS::SageMaker::Domain.UnifiedStudioSettings`.
|
|
653
|
+
* A collection of settings that apply to an Amazon SageMaker AI domain when you use it in Amazon SageMaker Unified Studio.
|
|
654
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-unifiedstudiosettings.html}
|
|
655
|
+
*/
|
|
656
|
+
export type UnifiedStudioSettings = {
|
|
657
|
+
/**
|
|
658
|
+
* The ID of the AWS account that has the Amazon SageMaker Unified Studio domain. The default value, if you don't specify an ID, is the ID of the account that has the Amazon SageMaker AI domain.
|
|
659
|
+
* @minLength `12`
|
|
660
|
+
* @maxLength `12`
|
|
661
|
+
* @pattern `^\d+$`
|
|
662
|
+
*/
|
|
663
|
+
DomainAccountId?: string;
|
|
664
|
+
/**
|
|
665
|
+
* The ID of the Amazon SageMaker Unified Studio domain associated with this domain.
|
|
666
|
+
* @minLength `1`
|
|
667
|
+
* @maxLength `36`
|
|
668
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
669
|
+
*/
|
|
670
|
+
DomainId?: string;
|
|
671
|
+
/**
|
|
672
|
+
* The AWS Region where the domain is located in Amazon SageMaker Unified Studio. The default value, if you don't specify a Region, is the Region where the Amazon SageMaker AI domain is located.
|
|
673
|
+
* @pattern `[a-zA-Z]{2}-[a-zA-Z\-]+-\d+`
|
|
674
|
+
*/
|
|
675
|
+
DomainRegion?: string;
|
|
676
|
+
/**
|
|
677
|
+
* The ID of the environment that Amazon SageMaker Unified Studio associates with the domain.
|
|
678
|
+
* @minLength `1`
|
|
679
|
+
* @maxLength `36`
|
|
680
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
681
|
+
*/
|
|
682
|
+
EnvironmentId?: string;
|
|
683
|
+
/**
|
|
684
|
+
* The ID of the Amazon SageMaker Unified Studio project that corresponds to the domain.
|
|
685
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
686
|
+
*/
|
|
687
|
+
ProjectId?: string;
|
|
688
|
+
/**
|
|
689
|
+
* The location where Amazon S3 stores temporary execution data and other artifacts for the project that corresponds to the domain.
|
|
690
|
+
* @minLength `1`
|
|
691
|
+
* @maxLength `100`
|
|
692
|
+
* @pattern `[\w\.-]+$`
|
|
693
|
+
*/
|
|
694
|
+
ProjectS3Path?: string;
|
|
695
|
+
/**
|
|
696
|
+
* Sets whether you can access the domain in Amazon SageMaker Studio:
|
|
697
|
+
|
|
698
|
+
ENABLED
|
|
699
|
+
You can access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it in both studio interfaces.
|
|
700
|
+
DISABLED
|
|
701
|
+
You can't access the domain in Amazon SageMaker Studio. If you migrate the domain to Amazon SageMaker Unified Studio, you can access it only in that studio interface.
|
|
702
|
+
|
|
703
|
+
*/
|
|
704
|
+
StudioWebPortalAccess?: "ENABLED" | "DISABLED";
|
|
705
|
+
};
|
|
647
706
|
/**
|
|
648
707
|
* Type definition for `AWS::SageMaker::Domain.UserSettings`.
|
|
649
708
|
* A collection of settings that apply to users of Amazon SageMaker Studio. These settings are specified when the CreateUserProfile API is called, and as DefaultUserSettings when the CreateDomain API is called.
|