@awboost/cfn-resource-types 0.1.517 → 0.1.519
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-Bedrock-Blueprint.d.ts +1 -1
- package/lib/AWS-Bedrock-DataAutomationProject.d.ts +2 -2
- package/lib/AWS-EC2-IPAMPool.d.ts +1 -1
- package/lib/AWS-EC2-VPNConnection.d.ts +1 -1
- package/lib/AWS-QuickSight-CustomPermissions.d.ts +12 -0
- package/lib/AWS-RDS-DBInstance.d.ts +32 -0
- package/lib/AWS-SES-ConfigurationSet.d.ts +25 -0
- package/package.json +1 -1
|
@@ -45,7 +45,7 @@ export type BedrockBlueprintAttributes = {
|
|
|
45
45
|
/**
|
|
46
46
|
* ARN of a Blueprint
|
|
47
47
|
* @maxLength `128`
|
|
48
|
-
* @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})$`
|
|
48
|
+
* @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})$`
|
|
49
49
|
*/
|
|
50
50
|
BlueprintArn: string;
|
|
51
51
|
/**
|
|
@@ -65,7 +65,7 @@ export type BedrockDataAutomationProjectAttributes = {
|
|
|
65
65
|
/**
|
|
66
66
|
* ARN of a DataAutomationProject
|
|
67
67
|
* @maxLength `128`
|
|
68
|
-
* @pattern `^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:(aws|[0-9]{12}):data-automation-project/[a-zA-Z0-9-]{12,36}$`
|
|
68
|
+
* @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}$`
|
|
69
69
|
*/
|
|
70
70
|
ProjectArn: string;
|
|
71
71
|
/**
|
|
@@ -154,7 +154,7 @@ export type BlueprintItem = {
|
|
|
154
154
|
/**
|
|
155
155
|
* ARN of a Blueprint
|
|
156
156
|
* @maxLength `128`
|
|
157
|
-
* @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})$`
|
|
157
|
+
* @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})$`
|
|
158
158
|
*/
|
|
159
159
|
BlueprintArn: string;
|
|
160
160
|
/**
|
|
@@ -32,7 +32,7 @@ export type EC2IPAMPoolProperties = {
|
|
|
32
32
|
/**
|
|
33
33
|
* Limits which service in Amazon Web Services that the pool can be used in.
|
|
34
34
|
*/
|
|
35
|
-
AwsService?: "ec2";
|
|
35
|
+
AwsService?: "ec2" | "global-services";
|
|
36
36
|
Description?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The Id of the scope this pool is a part of.
|
|
@@ -36,13 +36,17 @@ export type QuickSightCustomPermissionsAttributes = {
|
|
|
36
36
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html}
|
|
37
37
|
*/
|
|
38
38
|
export type Capabilities = {
|
|
39
|
+
Action?: CapabilityState;
|
|
39
40
|
AddOrRunAnomalyDetectionForAnalyses?: CapabilityState;
|
|
40
41
|
Analysis?: CapabilityState;
|
|
42
|
+
Automate?: CapabilityState;
|
|
43
|
+
ChatAgent?: CapabilityState;
|
|
41
44
|
CreateAndUpdateDashboardEmailReports?: CapabilityState;
|
|
42
45
|
CreateAndUpdateDataSources?: CapabilityState;
|
|
43
46
|
CreateAndUpdateDatasets?: CapabilityState;
|
|
44
47
|
CreateAndUpdateThemes?: CapabilityState;
|
|
45
48
|
CreateAndUpdateThresholdAlerts?: CapabilityState;
|
|
49
|
+
CreateChatAgents?: CapabilityState;
|
|
46
50
|
CreateSPICEDataset?: CapabilityState;
|
|
47
51
|
CreateSharedFolders?: CapabilityState;
|
|
48
52
|
Dashboard?: CapabilityState;
|
|
@@ -52,14 +56,22 @@ export type Capabilities = {
|
|
|
52
56
|
ExportToExcelInScheduledReports?: CapabilityState;
|
|
53
57
|
ExportToPdf?: CapabilityState;
|
|
54
58
|
ExportToPdfInScheduledReports?: CapabilityState;
|
|
59
|
+
Flow?: CapabilityState;
|
|
55
60
|
IncludeContentInScheduledReportsEmail?: CapabilityState;
|
|
61
|
+
KnowledgeBase?: CapabilityState;
|
|
62
|
+
PerformFlowUiTask?: CapabilityState;
|
|
56
63
|
PrintReports?: CapabilityState;
|
|
64
|
+
PublishWithoutApproval?: CapabilityState;
|
|
57
65
|
RenameSharedFolders?: CapabilityState;
|
|
66
|
+
Research?: CapabilityState;
|
|
58
67
|
ShareAnalyses?: CapabilityState;
|
|
59
68
|
ShareDashboards?: CapabilityState;
|
|
60
69
|
ShareDataSources?: CapabilityState;
|
|
61
70
|
ShareDatasets?: CapabilityState;
|
|
71
|
+
Space?: CapabilityState;
|
|
62
72
|
SubscribeDashboardEmailReports?: CapabilityState;
|
|
73
|
+
UseAgentWebSearch?: CapabilityState;
|
|
74
|
+
UseBedrockModels?: CapabilityState;
|
|
63
75
|
ViewAccountSPICECapacity?: CapabilityState;
|
|
64
76
|
};
|
|
65
77
|
/**
|
|
@@ -25,6 +25,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
25
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html}
|
|
26
26
|
*/
|
|
27
27
|
export type RDSDBInstanceProperties = {
|
|
28
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[];
|
|
28
29
|
/**
|
|
29
30
|
* The amount of storage in gibibytes (GiB) to be initially allocated for the database instance.
|
|
30
31
|
If any value is set in the ``Iops`` parameter, ``AllocatedStorage`` must be at least 100 GiB, which corresponds to the minimum Iops value of 1,000. If you increase the ``Iops`` value (in 1,000 IOPS increments), then you must also increase the ``AllocatedStorage`` value (in 100-GiB increments).
|
|
@@ -923,6 +924,37 @@ export type RDSDBInstanceAttributes = {
|
|
|
923
924
|
StatusType: string;
|
|
924
925
|
}[];
|
|
925
926
|
};
|
|
927
|
+
/**
|
|
928
|
+
* Type definition for `AWS::RDS::DBInstance.AdditionalStorageVolume`.
|
|
929
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html}
|
|
930
|
+
*/
|
|
931
|
+
export type AdditionalStorageVolume = {
|
|
932
|
+
/**
|
|
933
|
+
* The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
|
|
934
|
+
* @pattern `^[0-9]*$`
|
|
935
|
+
*/
|
|
936
|
+
AllocatedStorage?: string;
|
|
937
|
+
/**
|
|
938
|
+
* The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
|
|
939
|
+
*/
|
|
940
|
+
Iops?: number;
|
|
941
|
+
/**
|
|
942
|
+
* The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
|
|
943
|
+
*/
|
|
944
|
+
MaxAllocatedStorage?: number;
|
|
945
|
+
/**
|
|
946
|
+
* 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.
|
|
947
|
+
*/
|
|
948
|
+
StorageThroughput?: number;
|
|
949
|
+
/**
|
|
950
|
+
* The storage type for the additional storage volume.
|
|
951
|
+
*/
|
|
952
|
+
StorageType?: string;
|
|
953
|
+
/**
|
|
954
|
+
* The name of the additional storage volume.
|
|
955
|
+
*/
|
|
956
|
+
VolumeName?: string;
|
|
957
|
+
};
|
|
926
958
|
/**
|
|
927
959
|
* Type definition for `AWS::RDS::DBInstance.DBInstanceRole`.
|
|
928
960
|
* Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.
|
|
@@ -116,6 +116,31 @@ export type SuppressionOptions = {
|
|
|
116
116
|
* A list that contains the reasons that email addresses are automatically added to the suppression list for your account.
|
|
117
117
|
*/
|
|
118
118
|
SuppressedReasons?: string[];
|
|
119
|
+
/**
|
|
120
|
+
* An object that contains information about the validation options for your account.
|
|
121
|
+
*/
|
|
122
|
+
ValidationOptions?: {
|
|
123
|
+
/**
|
|
124
|
+
* The condition threshold settings for suppression validation.
|
|
125
|
+
*/
|
|
126
|
+
ConditionThreshold: {
|
|
127
|
+
/**
|
|
128
|
+
* Whether the condition threshold is enabled or disabled.
|
|
129
|
+
* @pattern `ENABLED|DISABLED`
|
|
130
|
+
*/
|
|
131
|
+
ConditionThresholdEnabled: string;
|
|
132
|
+
/**
|
|
133
|
+
* The overall confidence threshold settings.
|
|
134
|
+
*/
|
|
135
|
+
OverallConfidenceThreshold?: {
|
|
136
|
+
/**
|
|
137
|
+
* The confidence verdict threshold level.
|
|
138
|
+
* @pattern `MEDIUM|HIGH|MANAGED`
|
|
139
|
+
*/
|
|
140
|
+
ConfidenceVerdictThreshold: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
};
|
|
119
144
|
};
|
|
120
145
|
/**
|
|
121
146
|
* Type definition for `AWS::SES::ConfigurationSet.Tag`.
|