@awboost/cfn-resource-types 0.1.136 → 0.1.137

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.
Files changed (57) hide show
  1. package/lib/AWS-ApiGatewayV2-Integration.d.ts +6 -75
  2. package/lib/AWS-ApiGatewayV2-Integration.js +1 -2
  3. package/lib/AWS-AppIntegrations-Application.d.ts +1 -1
  4. package/lib/AWS-ApplicationSignals-ServiceLevelObjective.d.ts +72 -1
  5. package/lib/AWS-Backup-RestoreTestingPlan.d.ts +6 -0
  6. package/lib/AWS-Batch-ComputeEnvironment.d.ts +1 -0
  7. package/lib/AWS-Bedrock-Flow.d.ts +131 -1
  8. package/lib/AWS-Bedrock-FlowAlias.d.ts +1 -1
  9. package/lib/AWS-Bedrock-FlowVersion.d.ts +118 -1
  10. package/lib/AWS-Bedrock-PromptVersion.d.ts +17 -0
  11. package/lib/AWS-CloudWatch-Alarm.d.ts +7 -4
  12. package/lib/AWS-CodeBuild-Fleet.d.ts +6 -2
  13. package/lib/AWS-EC2-CustomerGateway.d.ts +1 -1
  14. package/lib/AWS-EC2-InternetGateway.d.ts +1 -1
  15. package/lib/AWS-EC2-KeyPair.d.ts +1 -1
  16. package/lib/AWS-EC2-NatGateway.d.ts +1 -1
  17. package/lib/AWS-EC2-Subnet.d.ts +4 -4
  18. package/lib/AWS-EC2-VPCEndpoint.d.ts +4 -2
  19. package/lib/AWS-EC2-VPCEndpoint.js +2 -1
  20. package/lib/AWS-EC2-VPNConnection.d.ts +12 -1
  21. package/lib/AWS-EC2-VPNGateway.d.ts +1 -1
  22. package/lib/AWS-EC2-VPNGatewayRoutePropagation.d.ts +6 -0
  23. package/lib/AWS-EC2-Volume.d.ts +13 -7
  24. package/lib/AWS-EC2-Volume.js +4 -1
  25. package/lib/AWS-ECR-Repository.d.ts +1 -1
  26. package/lib/AWS-ECS-TaskDefinition.d.ts +73 -62
  27. package/lib/AWS-ECS-TaskDefinition.js +1 -1
  28. package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +1 -0
  29. package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +8 -0
  30. package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -1
  31. package/lib/AWS-IoTFleetWise-Campaign.d.ts +20 -0
  32. package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +2 -2
  33. package/lib/AWS-MSK-Replicator.d.ts +21 -0
  34. package/lib/AWS-MediaLive-Input.d.ts +27 -0
  35. package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +2 -2
  36. package/lib/AWS-Neptune-DBCluster.d.ts +7 -3
  37. package/lib/AWS-OpenSearchService-Domain.d.ts +12 -0
  38. package/lib/AWS-PaymentCryptography-Key.d.ts +3 -3
  39. package/lib/AWS-QBusiness-Application.d.ts +45 -0
  40. package/lib/AWS-QBusiness-WebExperience.d.ts +40 -0
  41. package/lib/AWS-QuickSight-Analysis.d.ts +48 -0
  42. package/lib/AWS-QuickSight-Dashboard.d.ts +48 -0
  43. package/lib/AWS-QuickSight-DataSet.d.ts +2 -2
  44. package/lib/AWS-QuickSight-DataSource.d.ts +1 -1
  45. package/lib/AWS-QuickSight-Template.d.ts +48 -0
  46. package/lib/AWS-RDS-DBInstance.d.ts +2 -2
  47. package/lib/AWS-SES-ReceiptRule.d.ts +1 -0
  48. package/lib/AWS-SSMQuickSetup-ConfigurationManager.d.ts +104 -0
  49. package/lib/AWS-SSMQuickSetup-ConfigurationManager.js +12 -0
  50. package/lib/AWS-SageMaker-Domain.d.ts +1 -1
  51. package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
  52. package/lib/AWS-SecurityHub-AutomationRule.d.ts +332 -96
  53. package/lib/AWS-SecurityHub-DelegatedAdmin.d.ts +9 -7
  54. package/lib/AWS-SecurityHub-DelegatedAdmin.js +4 -1
  55. package/lib/AWS-SecurityHub-FindingAggregator.d.ts +20 -10
  56. package/lib/AWS-SecurityHub-FindingAggregator.js +3 -1
  57. package/package.json +1 -1
@@ -114,6 +114,8 @@ export type DataDestinationConfig = {
114
114
  S3Config: S3Config;
115
115
  } | {
116
116
  TimestreamConfig: TimestreamConfig;
117
+ } | {
118
+ MqttTopicConfig: MqttTopicConfig;
117
119
  };
118
120
  /**
119
121
  * Type definition for `AWS::IoTFleetWise::Campaign.DataFormat`.
@@ -125,6 +127,24 @@ export type DataFormat = "JSON" | "PARQUET";
125
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-diagnosticsmode.html}
126
128
  */
127
129
  export type DiagnosticsMode = "OFF" | "SEND_ACTIVE_DTCS";
130
+ /**
131
+ * Type definition for `AWS::IoTFleetWise::Campaign.MqttTopicConfig`.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-mqtttopicconfig.html}
133
+ */
134
+ export type MqttTopicConfig = {
135
+ /**
136
+ * @minLength `20`
137
+ * @maxLength `2048`
138
+ * @pattern `^arn:(aws[a-zA-Z0-9-]*):iam::(\d{12})?:(role((\u002F)|(\u002F[\u0021-\u007F]+\u002F))[\w+=,.@-]+)$`
139
+ */
140
+ ExecutionRoleArn: string;
141
+ /**
142
+ * @minLength `20`
143
+ * @maxLength `2048`
144
+ * @pattern `^arn:.*`
145
+ */
146
+ MqttTopicArn: string;
147
+ };
128
148
  /**
129
149
  * Type definition for `AWS::IoTFleetWise::Campaign.S3Config`.
130
150
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-campaign-s3config.html}
@@ -22,12 +22,12 @@ export type IoTFleetWiseDecoderManifestProperties = {
22
22
  * @minLength `1`
23
23
  * @maxLength `500`
24
24
  */
25
- NetworkInterfaces?: (CanNetworkInterface | ObdNetworkInterface)[];
25
+ NetworkInterfaces?: (CanNetworkInterface | ObdNetworkInterface | unknown)[];
26
26
  /**
27
27
  * @minLength `1`
28
28
  * @maxLength `500`
29
29
  */
30
- SignalDecoders?: (CanSignalDecoder | ObdSignalDecoder)[];
30
+ SignalDecoders?: (CanSignalDecoder | ObdSignalDecoder | unknown)[];
31
31
  Status?: ManifestStatus;
32
32
  /**
33
33
  * @minLength `0`
@@ -173,6 +173,23 @@ export type ReplicationStartingPosition = {
173
173
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationstartingpositiontype.html}
174
174
  */
175
175
  export type ReplicationStartingPositionType = "LATEST" | "EARLIEST";
176
+ /**
177
+ * Type definition for `AWS::MSK::Replicator.ReplicationTopicNameConfiguration`.
178
+ * Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationtopicnameconfiguration.html}
180
+ */
181
+ export type ReplicationTopicNameConfiguration = {
182
+ /**
183
+ * The type of replicated topic name.
184
+ */
185
+ Type?: ReplicationTopicNameConfigurationType;
186
+ };
187
+ /**
188
+ * Type definition for `AWS::MSK::Replicator.ReplicationTopicNameConfigurationType`.
189
+ * The type of replicated topic name.
190
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-replicationtopicnameconfigurationtype.html}
191
+ */
192
+ export type ReplicationTopicNameConfigurationType = "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS" | "IDENTICAL";
176
193
  /**
177
194
  * Type definition for `AWS::MSK::Replicator.Tag`.
178
195
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-replicator-tag.html}
@@ -209,6 +226,10 @@ export type TopicReplication = {
209
226
  * Configuration for specifying the position in the topics to start replicating from.
210
227
  */
211
228
  StartingPosition?: ReplicationStartingPosition;
229
+ /**
230
+ * Configuration for specifying replicated topic names should be the same as their corresponding upstream topics or prefixed with source cluster alias.
231
+ */
232
+ TopicNameConfiguration?: ReplicationTopicNameConfiguration;
212
233
  /**
213
234
  * List of regular expression patterns indicating the topics that should not be replicated.
214
235
  * @minLength `1`
@@ -12,6 +12,7 @@ export type MediaLiveInputProperties = {
12
12
  Name?: string;
13
13
  RoleArn?: string;
14
14
  Sources?: InputSourceRequest[];
15
+ SrtSettings?: SrtSettingsRequest;
15
16
  Tags?: Record<string, any>;
16
17
  Type?: string;
17
18
  Vpc?: InputVpcRequest;
@@ -62,6 +63,32 @@ export type InputVpcRequest = {
62
63
  export type MediaConnectFlowRequest = {
63
64
  FlowArn?: string;
64
65
  };
66
+ /**
67
+ * Type definition for `AWS::MediaLive::Input.SrtCallerDecryptionRequest`.
68
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallerdecryptionrequest.html}
69
+ */
70
+ export type SrtCallerDecryptionRequest = {
71
+ Algorithm?: string;
72
+ PassphraseSecretArn?: string;
73
+ };
74
+ /**
75
+ * Type definition for `AWS::MediaLive::Input.SrtCallerSourceRequest`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtcallersourcerequest.html}
77
+ */
78
+ export type SrtCallerSourceRequest = {
79
+ Decryption?: SrtCallerDecryptionRequest;
80
+ MinimumLatency?: number;
81
+ SrtListenerAddress?: string;
82
+ SrtListenerPort?: string;
83
+ StreamId?: string;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::MediaLive::Input.SrtSettingsRequest`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-input-srtsettingsrequest.html}
88
+ */
89
+ export type SrtSettingsRequest = {
90
+ SrtCallerSources?: SrtCallerSourceRequest[];
91
+ };
65
92
  /**
66
93
  * Resource Type definition for AWS::MediaLive::Input
67
94
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-input.html}
@@ -18,7 +18,7 @@ export type MediaPackageV2OriginEndpointProperties = {
18
18
  * @pattern `^[a-zA-Z0-9_-]+$`
19
19
  */
20
20
  ChannelName: string;
21
- ContainerType?: ContainerType;
21
+ ContainerType: ContainerType;
22
22
  /**
23
23
  * <p>A DASH manifest configuration.</p>
24
24
  */
@@ -207,7 +207,7 @@ export type DashUtcTimingMode = "HTTP_HEAD" | "HTTP_ISO" | "HTTP_XSDATE" | "UTC_
207
207
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.DrmSystem`.
208
208
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-drmsystem.html}
209
209
  */
210
- export type DrmSystem = "CLEAR_KEY_AES_128" | "FAIRPLAY" | "PLAYREADY" | "WIDEVINE";
210
+ export type DrmSystem = "CLEAR_KEY_AES_128" | "FAIRPLAY" | "PLAYREADY" | "WIDEVINE" | "IRDETO";
211
211
  /**
212
212
  * Type definition for `AWS::MediaPackageV2::OriginEndpoint.Encryption`.
213
213
  * <p>The parameters for encrypting content.</p>
@@ -66,7 +66,7 @@ export type NeptuneDBClusterProperties = {
66
66
  */
67
67
  IamAuthEnabled?: boolean;
68
68
  /**
69
- * If `StorageEncrypted` is true, the Amazon KMS key identifier for the encrypted DB cluster.
69
+ * The Amazon Resource Name (ARN) of the AWS KMS key that is used to encrypt the database instances in the DB cluster, such as arn:aws:kms:us-east-1:012345678910:key/abcd1234-a123-456a-a12b-a123b4cd56ef. If you enable the StorageEncrypted property but don't specify this property, the default KMS key is used. If you specify this property, you must set the StorageEncrypted property to true.
70
70
  */
71
71
  KmsKeyId?: string;
72
72
  /**
@@ -116,9 +116,13 @@ export type NeptuneDBClusterProperties = {
116
116
  /**
117
117
  * Indicates whether the DB cluster is encrypted.
118
118
 
119
- If you specify the `DBClusterIdentifier`, `DBSnapshotIdentifier`, or `SourceDBInstanceIdentifier` property, don't specify this property. The value is inherited from the cluster, snapshot, or source DB instance. If you specify the KmsKeyId property, you must enable encryption.
119
+ If you specify the KmsKeyId property, then you must enable encryption and set this property to true.
120
120
 
121
- If you specify the KmsKeyId, you must enable encryption by setting StorageEncrypted to true.
121
+ If you enable the StorageEncrypted property but don't specify KmsKeyId property, then the default KMS key is used. If you specify KmsKeyId property, then that KMS Key is used to encrypt the database instances in the DB cluster.
122
+
123
+ If you specify the SourceDBClusterIdentifier property and don't specify this property or disable it. The value is inherited from the source DB cluster, and if the DB cluster is encrypted, the KmsKeyId property from the source cluster is used.
124
+
125
+ If you specify the DBSnapshotIdentifier and don't specify this property or disable it. The value is inherited from the snapshot, and the specified KmsKeyId property from the snapshot is used.
122
126
  */
123
127
  StorageEncrypted?: boolean;
124
128
  /**
@@ -20,6 +20,7 @@ export type OpenSearchServiceDomainProperties = {
20
20
  LogPublishingOptions?: Record<string, LogPublishingOption>;
21
21
  NodeToNodeEncryptionOptions?: NodeToNodeEncryptionOptions;
22
22
  OffPeakWindowOptions?: OffPeakWindowOptions;
23
+ SkipShardMigrationWait?: boolean;
23
24
  SnapshotOptions?: SnapshotOptions;
24
25
  SoftwareUpdateOptions?: SoftwareUpdateOptions;
25
26
  /**
@@ -61,6 +62,7 @@ export type AdvancedSecurityOptionsInput = {
61
62
  AnonymousAuthEnabled?: boolean;
62
63
  Enabled?: boolean;
63
64
  InternalUserDatabaseEnabled?: boolean;
65
+ JWTOptions?: JWTOptions;
64
66
  MasterUserOptions?: MasterUserOptions;
65
67
  SAMLOptions?: SAMLOptions;
66
68
  };
@@ -141,6 +143,16 @@ export type Idp = {
141
143
  */
142
144
  MetadataContent: string;
143
145
  };
146
+ /**
147
+ * Type definition for `AWS::OpenSearchService::Domain.JWTOptions`.
148
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-jwtoptions.html}
149
+ */
150
+ export type JWTOptions = {
151
+ Enabled?: boolean;
152
+ PublicKey?: string;
153
+ RolesKey?: string;
154
+ SubjectKey?: string;
155
+ };
144
156
  /**
145
157
  * Type definition for `AWS::OpenSearchService::Domain.LogPublishingOption`.
146
158
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-logpublishingoption.html}
@@ -39,7 +39,7 @@ export type PaymentCryptographyKeyAttributes = {
39
39
  * Type definition for `AWS::PaymentCryptography::Key.KeyAlgorithm`.
40
40
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyalgorithm.html}
41
41
  */
42
- export type KeyAlgorithm = "TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "RSA_2048" | "RSA_3072" | "RSA_4096";
42
+ export type KeyAlgorithm = "TDES_2KEY" | "TDES_3KEY" | "AES_128" | "AES_192" | "AES_256" | "RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384";
43
43
  /**
44
44
  * Type definition for `AWS::PaymentCryptography::Key.KeyAttributes`.
45
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyattributes.html}
@@ -103,10 +103,10 @@ export type Tag = {
103
103
  */
104
104
  Key: string;
105
105
  /**
106
- * @minLength `0`
106
+ * @minLength `1`
107
107
  * @maxLength `256`
108
108
  */
109
- Value?: string;
109
+ Value: string;
110
110
  };
111
111
  /**
112
112
  * Definition of AWS::PaymentCryptography::Key Resource Type
@@ -6,6 +6,8 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type QBusinessApplicationProperties = {
8
8
  AttachmentsConfiguration?: AttachmentsConfiguration;
9
+ AutoSubscriptionConfiguration?: AutoSubscriptionConfiguration;
10
+ ClientIdsForOIDC?: string[];
9
11
  /**
10
12
  * @minLength `0`
11
13
  * @maxLength `1000`
@@ -19,12 +21,20 @@ export type QBusinessApplicationProperties = {
19
21
  */
20
22
  DisplayName: string;
21
23
  EncryptionConfiguration?: EncryptionConfiguration;
24
+ /**
25
+ * @minLength `20`
26
+ * @maxLength `2048`
27
+ * @pattern `^arn:aws:iam::\d{12}:(oidc-provider|saml-provider)/[a-zA-Z0-9_\.\/@\-]+$`
28
+ */
29
+ IamIdentityProviderArn?: string;
22
30
  /**
23
31
  * @minLength `10`
24
32
  * @maxLength `1224`
25
33
  * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
26
34
  */
27
35
  IdentityCenterInstanceArn?: string;
36
+ IdentityType?: IdentityType;
37
+ PersonalizationConfiguration?: PersonalizationConfiguration;
28
38
  QAppsConfiguration?: QAppsConfiguration;
29
39
  /**
30
40
  * @minLength `0`
@@ -82,6 +92,19 @@ export type AttachmentsConfiguration = {
82
92
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-attachmentscontrolmode.html}
83
93
  */
84
94
  export type AttachmentsControlMode = "ENABLED" | "DISABLED";
95
+ /**
96
+ * Type definition for `AWS::QBusiness::Application.AutoSubscriptionConfiguration`.
97
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-autosubscriptionconfiguration.html}
98
+ */
99
+ export type AutoSubscriptionConfiguration = {
100
+ AutoSubscribe: AutoSubscriptionStatus;
101
+ DefaultSubscriptionType?: SubscriptionType;
102
+ };
103
+ /**
104
+ * Type definition for `AWS::QBusiness::Application.AutoSubscriptionStatus`.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-autosubscriptionstatus.html}
106
+ */
107
+ export type AutoSubscriptionStatus = "ENABLED" | "DISABLED";
85
108
  /**
86
109
  * Type definition for `AWS::QBusiness::Application.EncryptionConfiguration`.
87
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-encryptionconfiguration.html}
@@ -93,6 +116,23 @@ export type EncryptionConfiguration = {
93
116
  */
94
117
  KmsKeyId?: string;
95
118
  };
119
+ /**
120
+ * Type definition for `AWS::QBusiness::Application.IdentityType`.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-identitytype.html}
122
+ */
123
+ export type IdentityType = "AWS_IAM_IDP_SAML" | "AWS_IAM_IDP_OIDC" | "AWS_IAM_IDC";
124
+ /**
125
+ * Type definition for `AWS::QBusiness::Application.PersonalizationConfiguration`.
126
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-personalizationconfiguration.html}
127
+ */
128
+ export type PersonalizationConfiguration = {
129
+ PersonalizationControlMode: PersonalizationControlMode;
130
+ };
131
+ /**
132
+ * Type definition for `AWS::QBusiness::Application.PersonalizationControlMode`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-personalizationcontrolmode.html}
134
+ */
135
+ export type PersonalizationControlMode = "ENABLED" | "DISABLED";
96
136
  /**
97
137
  * Type definition for `AWS::QBusiness::Application.QAppsConfiguration`.
98
138
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-qappsconfiguration.html}
@@ -105,6 +145,11 @@ export type QAppsConfiguration = {
105
145
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-qappscontrolmode.html}
106
146
  */
107
147
  export type QAppsControlMode = "ENABLED" | "DISABLED";
148
+ /**
149
+ * Type definition for `AWS::QBusiness::Application.SubscriptionType`.
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-subscriptiontype.html}
151
+ */
152
+ export type SubscriptionType = "Q_LITE" | "Q_BUSINESS";
108
153
  /**
109
154
  * Type definition for `AWS::QBusiness::Application.Tag`.
110
155
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-tag.html}
@@ -11,6 +11,7 @@ export type QBusinessWebExperienceProperties = {
11
11
  * @pattern `^[a-zA-Z0-9][a-zA-Z0-9-]{35}$`
12
12
  */
13
13
  ApplicationId: string;
14
+ IdentityProviderConfiguration?: IdentityProviderConfiguration;
14
15
  /**
15
16
  * @minLength `0`
16
17
  * @maxLength `1284`
@@ -68,6 +69,45 @@ export type QBusinessWebExperienceAttributes = {
68
69
  */
69
70
  WebExperienceId: string;
70
71
  };
72
+ /**
73
+ * Type definition for `AWS::QBusiness::WebExperience.IdentityProviderConfiguration`.
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-identityproviderconfiguration.html}
75
+ */
76
+ export type IdentityProviderConfiguration = {
77
+ SamlConfiguration: SamlProviderConfiguration;
78
+ } | {
79
+ OpenIDConnectConfiguration: OpenIDConnectProviderConfiguration;
80
+ };
81
+ /**
82
+ * Type definition for `AWS::QBusiness::WebExperience.OpenIDConnectProviderConfiguration`.
83
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-openidconnectproviderconfiguration.html}
84
+ */
85
+ export type OpenIDConnectProviderConfiguration = {
86
+ /**
87
+ * @minLength `0`
88
+ * @maxLength `1284`
89
+ * @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
90
+ */
91
+ SecretsArn: string;
92
+ /**
93
+ * @minLength `0`
94
+ * @maxLength `1284`
95
+ * @pattern `^arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}$`
96
+ */
97
+ SecretsRole: string;
98
+ };
99
+ /**
100
+ * Type definition for `AWS::QBusiness::WebExperience.SamlProviderConfiguration`.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-samlproviderconfiguration.html}
102
+ */
103
+ export type SamlProviderConfiguration = {
104
+ /**
105
+ * @minLength `1`
106
+ * @maxLength `1284`
107
+ * @pattern `^https://.*$`
108
+ */
109
+ AuthenticationUrl: string;
110
+ };
71
111
  /**
72
112
  * Type definition for `AWS::QBusiness::WebExperience.Tag`.
73
113
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-webexperience-tag.html}
@@ -798,6 +798,15 @@ export type CategoryFilterMatchOperator = "EQUALS" | "DOES_NOT_EQUAL" | "CONTAIN
798
798
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-categoryfilterselectalloptions.html}
799
799
  */
800
800
  export type CategoryFilterSelectAllOptions = "FILTER_ALL_VALUES";
801
+ /**
802
+ * Type definition for `AWS::QuickSight::Analysis.CategoryInnerFilter`.
803
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-categoryinnerfilter.html}
804
+ */
805
+ export type CategoryInnerFilter = {
806
+ Column: ColumnIdentifier;
807
+ Configuration: CategoryFilterConfiguration;
808
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
809
+ };
801
810
  /**
802
811
  * Type definition for `AWS::QuickSight::Analysis.ChartAxisLabelOptions`.
803
812
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-chartaxislabeloptions.html}
@@ -911,6 +920,7 @@ export type ColumnTooltipItem = {
911
920
  Aggregation?: AggregationFunction;
912
921
  Column: ColumnIdentifier;
913
922
  Label?: string;
923
+ TooltipTarget?: TooltipTarget;
914
924
  Visibility?: Visibility;
915
925
  };
916
926
  /**
@@ -961,6 +971,7 @@ export type ComboChartConfiguration = {
961
971
  ReferenceLines?: ReferenceLine[];
962
972
  SecondaryYAxisDisplayOptions?: AxisDisplayOptions;
963
973
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
974
+ SingleAxisOptions?: SingleAxisOptions;
964
975
  SortConfiguration?: ComboChartSortConfiguration;
965
976
  Tooltip?: TooltipOptions;
966
977
  VisualPalette?: VisualPalette;
@@ -2111,6 +2122,7 @@ export type FieldTooltipItem = {
2111
2122
  */
2112
2123
  FieldId: string;
2113
2124
  Label?: string;
2125
+ TooltipTarget?: TooltipTarget;
2114
2126
  Visibility?: Visibility;
2115
2127
  };
2116
2128
  /**
@@ -2221,6 +2233,7 @@ export type FilledMapVisual = {
2221
2233
  */
2222
2234
  export type Filter = {
2223
2235
  CategoryFilter?: CategoryFilter;
2236
+ NestedFilter?: NestedFilter;
2224
2237
  NumericEqualityFilter?: NumericEqualityFilter;
2225
2238
  NumericRangeFilter?: NumericRangeFilter;
2226
2239
  RelativeDatesFilter?: RelativeDatesFilter;
@@ -3371,6 +3384,13 @@ export type HorizontalTextAlignment = "LEFT" | "CENTER" | "RIGHT" | "AUTO";
3371
3384
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-icon.html}
3372
3385
  */
3373
3386
  export type Icon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
3387
+ /**
3388
+ * Type definition for `AWS::QuickSight::Analysis.InnerFilter`.
3389
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-innerfilter.html}
3390
+ */
3391
+ export type InnerFilter = {
3392
+ CategoryInnerFilter?: CategoryInnerFilter;
3393
+ };
3374
3394
  /**
3375
3395
  * Type definition for `AWS::QuickSight::Analysis.InsightConfiguration`.
3376
3396
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-insightconfiguration.html}
@@ -3754,6 +3774,7 @@ export type LineChartConfiguration = {
3754
3774
  * @maxLength `2000`
3755
3775
  */
3756
3776
  Series?: SeriesItem[];
3777
+ SingleAxisOptions?: SingleAxisOptions;
3757
3778
  SmallMultiplesOptions?: SmallMultiplesOptions;
3758
3779
  SortConfiguration?: LineChartSortConfiguration;
3759
3780
  Tooltip?: TooltipOptions;
@@ -4057,6 +4078,21 @@ export type NegativeValueConfiguration = {
4057
4078
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-negativevaluedisplaymode.html}
4058
4079
  */
4059
4080
  export type NegativeValueDisplayMode = "POSITIVE" | "NEGATIVE";
4081
+ /**
4082
+ * Type definition for `AWS::QuickSight::Analysis.NestedFilter`.
4083
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-nestedfilter.html}
4084
+ */
4085
+ export type NestedFilter = {
4086
+ Column: ColumnIdentifier;
4087
+ /**
4088
+ * @minLength `1`
4089
+ * @maxLength `512`
4090
+ * @pattern `^[\w\-]+$`
4091
+ */
4092
+ FilterId: string;
4093
+ IncludeInnerSet: boolean;
4094
+ InnerFilter: InnerFilter;
4095
+ };
4060
4096
  /**
4061
4097
  * Type definition for `AWS::QuickSight::Analysis.NullValueFormatConfiguration`.
4062
4098
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-nullvalueformatconfiguration.html}
@@ -5982,6 +6018,13 @@ export type SimpleNumericalAggregationFunction = "SUM" | "AVERAGE" | "MIN" | "MA
5982
6018
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-simpletotalaggregationfunction.html}
5983
6019
  */
5984
6020
  export type SimpleTotalAggregationFunction = "DEFAULT" | "SUM" | "AVERAGE" | "MIN" | "MAX" | "NONE";
6021
+ /**
6022
+ * Type definition for `AWS::QuickSight::Analysis.SingleAxisOptions`.
6023
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-singleaxisoptions.html}
6024
+ */
6025
+ export type SingleAxisOptions = {
6026
+ YAxisOptions?: unknown;
6027
+ };
5985
6028
  /**
5986
6029
  * Type definition for `AWS::QuickSight::Analysis.SliderControlDisplayOptions`.
5987
6030
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-slidercontroldisplayoptions.html}
@@ -6678,6 +6721,11 @@ export type TooltipOptions = {
6678
6721
  SelectedTooltipType?: SelectedTooltipType;
6679
6722
  TooltipVisibility?: Visibility;
6680
6723
  };
6724
+ /**
6725
+ * Type definition for `AWS::QuickSight::Analysis.TooltipTarget`.
6726
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltiptarget.html}
6727
+ */
6728
+ export type TooltipTarget = "BOTH" | "BAR" | "LINE";
6681
6729
  /**
6682
6730
  * Type definition for `AWS::QuickSight::Analysis.TooltipTitleType`.
6683
6731
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-tooltiptitletype.html}
@@ -798,6 +798,15 @@ export type CategoryFilterMatchOperator = "EQUALS" | "DOES_NOT_EQUAL" | "CONTAIN
798
798
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-categoryfilterselectalloptions.html}
799
799
  */
800
800
  export type CategoryFilterSelectAllOptions = "FILTER_ALL_VALUES";
801
+ /**
802
+ * Type definition for `AWS::QuickSight::Dashboard.CategoryInnerFilter`.
803
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-categoryinnerfilter.html}
804
+ */
805
+ export type CategoryInnerFilter = {
806
+ Column: ColumnIdentifier;
807
+ Configuration: CategoryFilterConfiguration;
808
+ DefaultFilterControlConfiguration?: DefaultFilterControlConfiguration;
809
+ };
801
810
  /**
802
811
  * Type definition for `AWS::QuickSight::Dashboard.ChartAxisLabelOptions`.
803
812
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-chartaxislabeloptions.html}
@@ -911,6 +920,7 @@ export type ColumnTooltipItem = {
911
920
  Aggregation?: AggregationFunction;
912
921
  Column: ColumnIdentifier;
913
922
  Label?: string;
923
+ TooltipTarget?: TooltipTarget;
914
924
  Visibility?: Visibility;
915
925
  };
916
926
  /**
@@ -961,6 +971,7 @@ export type ComboChartConfiguration = {
961
971
  ReferenceLines?: ReferenceLine[];
962
972
  SecondaryYAxisDisplayOptions?: AxisDisplayOptions;
963
973
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
974
+ SingleAxisOptions?: SingleAxisOptions;
964
975
  SortConfiguration?: ComboChartSortConfiguration;
965
976
  Tooltip?: TooltipOptions;
966
977
  VisualPalette?: VisualPalette;
@@ -2367,6 +2378,7 @@ export type FieldTooltipItem = {
2367
2378
  */
2368
2379
  FieldId: string;
2369
2380
  Label?: string;
2381
+ TooltipTarget?: TooltipTarget;
2370
2382
  Visibility?: Visibility;
2371
2383
  };
2372
2384
  /**
@@ -2477,6 +2489,7 @@ export type FilledMapVisual = {
2477
2489
  */
2478
2490
  export type Filter = {
2479
2491
  CategoryFilter?: CategoryFilter;
2492
+ NestedFilter?: NestedFilter;
2480
2493
  NumericEqualityFilter?: NumericEqualityFilter;
2481
2494
  NumericRangeFilter?: NumericRangeFilter;
2482
2495
  RelativeDatesFilter?: RelativeDatesFilter;
@@ -3627,6 +3640,13 @@ export type HorizontalTextAlignment = "LEFT" | "CENTER" | "RIGHT" | "AUTO";
3627
3640
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-icon.html}
3628
3641
  */
3629
3642
  export type Icon = "CARET_UP" | "CARET_DOWN" | "PLUS" | "MINUS" | "ARROW_UP" | "ARROW_DOWN" | "ARROW_LEFT" | "ARROW_UP_LEFT" | "ARROW_DOWN_LEFT" | "ARROW_RIGHT" | "ARROW_UP_RIGHT" | "ARROW_DOWN_RIGHT" | "FACE_UP" | "FACE_DOWN" | "FACE_FLAT" | "ONE_BAR" | "TWO_BAR" | "THREE_BAR" | "CIRCLE" | "TRIANGLE" | "SQUARE" | "FLAG" | "THUMBS_UP" | "THUMBS_DOWN" | "CHECKMARK" | "X";
3643
+ /**
3644
+ * Type definition for `AWS::QuickSight::Dashboard.InnerFilter`.
3645
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-innerfilter.html}
3646
+ */
3647
+ export type InnerFilter = {
3648
+ CategoryInnerFilter?: CategoryInnerFilter;
3649
+ };
3630
3650
  /**
3631
3651
  * Type definition for `AWS::QuickSight::Dashboard.InsightConfiguration`.
3632
3652
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-insightconfiguration.html}
@@ -4010,6 +4030,7 @@ export type LineChartConfiguration = {
4010
4030
  * @maxLength `2000`
4011
4031
  */
4012
4032
  Series?: SeriesItem[];
4033
+ SingleAxisOptions?: SingleAxisOptions;
4013
4034
  SmallMultiplesOptions?: SmallMultiplesOptions;
4014
4035
  SortConfiguration?: LineChartSortConfiguration;
4015
4036
  Tooltip?: TooltipOptions;
@@ -4324,6 +4345,21 @@ export type NegativeValueConfiguration = {
4324
4345
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-negativevaluedisplaymode.html}
4325
4346
  */
4326
4347
  export type NegativeValueDisplayMode = "POSITIVE" | "NEGATIVE";
4348
+ /**
4349
+ * Type definition for `AWS::QuickSight::Dashboard.NestedFilter`.
4350
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-nestedfilter.html}
4351
+ */
4352
+ export type NestedFilter = {
4353
+ Column: ColumnIdentifier;
4354
+ /**
4355
+ * @minLength `1`
4356
+ * @maxLength `512`
4357
+ * @pattern `^[\w\-]+$`
4358
+ */
4359
+ FilterId: string;
4360
+ IncludeInnerSet: boolean;
4361
+ InnerFilter: InnerFilter;
4362
+ };
4327
4363
  /**
4328
4364
  * Type definition for `AWS::QuickSight::Dashboard.NullValueFormatConfiguration`.
4329
4365
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-nullvalueformatconfiguration.html}
@@ -6265,6 +6301,13 @@ export type SimpleNumericalAggregationFunction = "SUM" | "AVERAGE" | "MIN" | "MA
6265
6301
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-simpletotalaggregationfunction.html}
6266
6302
  */
6267
6303
  export type SimpleTotalAggregationFunction = "DEFAULT" | "SUM" | "AVERAGE" | "MIN" | "MAX" | "NONE";
6304
+ /**
6305
+ * Type definition for `AWS::QuickSight::Dashboard.SingleAxisOptions`.
6306
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-singleaxisoptions.html}
6307
+ */
6308
+ export type SingleAxisOptions = {
6309
+ YAxisOptions?: unknown;
6310
+ };
6268
6311
  /**
6269
6312
  * Type definition for `AWS::QuickSight::Dashboard.SliderControlDisplayOptions`.
6270
6313
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-slidercontroldisplayoptions.html}
@@ -6961,6 +7004,11 @@ export type TooltipOptions = {
6961
7004
  SelectedTooltipType?: SelectedTooltipType;
6962
7005
  TooltipVisibility?: Visibility;
6963
7006
  };
7007
+ /**
7008
+ * Type definition for `AWS::QuickSight::Dashboard.TooltipTarget`.
7009
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tooltiptarget.html}
7010
+ */
7011
+ export type TooltipTarget = "BOTH" | "BAR" | "LINE";
6964
7012
  /**
6965
7013
  * Type definition for `AWS::QuickSight::Dashboard.TooltipTitleType`.
6966
7014
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-tooltiptitletype.html}
@@ -145,7 +145,7 @@ export type CalculatedColumn = {
145
145
  /**
146
146
  * <p>An expression that defines the calculated column.</p>
147
147
  * @minLength `1`
148
- * @maxLength `4096`
148
+ * @maxLength `250000`
149
149
  */
150
150
  Expression: string;
151
151
  };
@@ -338,7 +338,7 @@ export type DataSetRefreshProperties = {
338
338
  /**
339
339
  * <p>The refresh configuration of a dataset.</p>
340
340
  */
341
- RefreshConfiguration: RefreshConfiguration;
341
+ RefreshConfiguration?: RefreshConfiguration;
342
342
  };
343
343
  /**
344
344
  * Type definition for `AWS::QuickSight::DataSet.DataSetUsageConfiguration`.
@@ -377,7 +377,7 @@ export type DataSourceParameters = {
377
377
  * Type definition for `AWS::QuickSight::DataSource.DataSourceType`.
378
378
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-datasourcetype.html}
379
379
  */
380
- export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW";
380
+ export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "REDSHIFT" | "S3" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE";
381
381
  /**
382
382
  * Type definition for `AWS::QuickSight::DataSource.IdentityCenterConfiguration`.
383
383
  * <p>The parameters for an IAM Identity Center configuration.</p>