@awboost/cfn-resource-types 0.1.518 → 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.
@@ -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.
@@ -81,7 +81,7 @@ export type EC2VPNConnectionProperties = {
81
81
  */
82
82
  Type: string;
83
83
  /**
84
- * The ID of the VPN connection.
84
+ * The ID of the VPN concentrator to associate with the VPN connection.
85
85
  */
86
86
  VpnConcentratorId?: string;
87
87
  /**
@@ -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
  /**
@@ -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`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.518",
3
+ "version": "0.1.519",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },