@awboost/cfn-resource-types 0.1.135 → 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.
- package/lib/AWS-ApiGatewayV2-Integration.d.ts +6 -75
- package/lib/AWS-ApiGatewayV2-Integration.js +1 -2
- package/lib/AWS-AppIntegrations-Application.d.ts +1 -1
- package/lib/AWS-ApplicationSignals-ServiceLevelObjective.d.ts +72 -1
- package/lib/AWS-Backup-RestoreTestingPlan.d.ts +6 -0
- package/lib/AWS-Batch-ComputeEnvironment.d.ts +1 -0
- package/lib/AWS-Bedrock-Flow.d.ts +131 -1
- package/lib/AWS-Bedrock-FlowAlias.d.ts +1 -1
- package/lib/AWS-Bedrock-FlowVersion.d.ts +118 -1
- package/lib/AWS-Bedrock-PromptVersion.d.ts +17 -0
- package/lib/AWS-CloudWatch-Alarm.d.ts +7 -4
- package/lib/AWS-CodeBuild-Fleet.d.ts +6 -2
- package/lib/AWS-Deadline-Fleet.d.ts +1 -1
- package/lib/AWS-EC2-CustomerGateway.d.ts +1 -1
- package/lib/AWS-EC2-InternetGateway.d.ts +1 -1
- package/lib/AWS-EC2-KeyPair.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +2 -2
- package/lib/AWS-EC2-NatGateway.d.ts +1 -1
- package/lib/AWS-EC2-Subnet.d.ts +4 -4
- package/lib/AWS-EC2-VPCEndpoint.d.ts +4 -2
- package/lib/AWS-EC2-VPCEndpoint.js +2 -1
- package/lib/AWS-EC2-VPNConnection.d.ts +12 -1
- package/lib/AWS-EC2-VPNGateway.d.ts +1 -1
- package/lib/AWS-EC2-VPNGatewayRoutePropagation.d.ts +6 -0
- package/lib/AWS-EC2-Volume.d.ts +13 -7
- package/lib/AWS-EC2-Volume.js +4 -1
- package/lib/AWS-ECR-Repository.d.ts +1 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +73 -62
- package/lib/AWS-ECS-TaskDefinition.js +1 -1
- package/lib/AWS-ElasticLoadBalancingV2-LoadBalancer.d.ts +1 -0
- package/lib/AWS-EntityResolution-MatchingWorkflow.d.ts +8 -0
- package/lib/AWS-EntityResolution-SchemaMapping.d.ts +1 -1
- package/lib/AWS-Glue-Database.d.ts +61 -8
- package/lib/AWS-IVS-Channel.d.ts +1 -1
- package/lib/AWS-IVS-PublicKey.d.ts +67 -0
- package/lib/AWS-IVS-PublicKey.js +12 -0
- package/lib/AWS-IVS-Stage.d.ts +24 -0
- package/lib/AWS-IoTFleetWise-Campaign.d.ts +20 -0
- package/lib/AWS-IoTFleetWise-DecoderManifest.d.ts +2 -2
- package/lib/AWS-Location-APIKey.d.ts +2 -2
- package/lib/AWS-MSK-Replicator.d.ts +21 -0
- package/lib/AWS-MediaLive-Input.d.ts +27 -0
- package/lib/AWS-MediaPackageV2-OriginEndpoint.d.ts +2 -2
- package/lib/AWS-Neptune-DBCluster.d.ts +7 -3
- package/lib/AWS-OpenSearchService-Domain.d.ts +12 -0
- package/lib/AWS-PaymentCryptography-Key.d.ts +3 -3
- package/lib/AWS-QBusiness-Application.d.ts +45 -0
- package/lib/AWS-QBusiness-WebExperience.d.ts +40 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +48 -0
- package/lib/AWS-QuickSight-Dashboard.d.ts +48 -0
- package/lib/AWS-QuickSight-DataSet.d.ts +2 -2
- package/lib/AWS-QuickSight-DataSource.d.ts +1 -1
- package/lib/AWS-QuickSight-Template.d.ts +48 -0
- package/lib/AWS-RDS-DBInstance.d.ts +2 -2
- package/lib/AWS-RDS-GlobalCluster.d.ts +2 -0
- package/lib/AWS-SES-ReceiptRule.d.ts +1 -0
- package/lib/AWS-SSMQuickSetup-ConfigurationManager.d.ts +104 -0
- package/lib/AWS-SSMQuickSetup-ConfigurationManager.js +12 -0
- package/lib/AWS-SageMaker-Domain.d.ts +1 -1
- package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
- package/lib/AWS-SecurityHub-AutomationRule.d.ts +332 -96
- package/lib/AWS-SecurityHub-DelegatedAdmin.d.ts +9 -7
- package/lib/AWS-SecurityHub-DelegatedAdmin.js +4 -1
- package/lib/AWS-SecurityHub-FindingAggregator.d.ts +20 -10
- package/lib/AWS-SecurityHub-FindingAggregator.js +3 -1
- package/package.json +1 -1
|
@@ -5,66 +5,119 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GlueDatabaseProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The AWS account ID for the account in which to create the catalog object.
|
|
10
|
+
*/
|
|
8
11
|
CatalogId: string;
|
|
12
|
+
/**
|
|
13
|
+
* The metadata for the database.
|
|
14
|
+
*/
|
|
9
15
|
DatabaseInput: DatabaseInput;
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
*/
|
|
15
|
-
export type GlueDatabaseAttributes = {
|
|
16
|
-
Id: string;
|
|
16
|
+
/**
|
|
17
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is store.
|
|
18
|
+
*/
|
|
19
|
+
DatabaseName?: string;
|
|
17
20
|
};
|
|
18
21
|
/**
|
|
19
22
|
* Type definition for `AWS::Glue::Database.DatabaseIdentifier`.
|
|
23
|
+
* A structure that describes a target database for resource linking.
|
|
20
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseidentifier.html}
|
|
21
25
|
*/
|
|
22
26
|
export type DatabaseIdentifier = {
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the Data Catalog in which the database resides.
|
|
29
|
+
*/
|
|
23
30
|
CatalogId?: string;
|
|
31
|
+
/**
|
|
32
|
+
* The name of the catalog database.
|
|
33
|
+
*/
|
|
24
34
|
DatabaseName?: string;
|
|
35
|
+
/**
|
|
36
|
+
* Region of the target database.
|
|
37
|
+
*/
|
|
25
38
|
Region?: string;
|
|
26
39
|
};
|
|
27
40
|
/**
|
|
28
41
|
* Type definition for `AWS::Glue::Database.DatabaseInput`.
|
|
42
|
+
* The structure used to create or update a database.
|
|
29
43
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-databaseinput.html}
|
|
30
44
|
*/
|
|
31
45
|
export type DatabaseInput = {
|
|
46
|
+
/**
|
|
47
|
+
* Creates a set of default permissions on the table for principals. Used by AWS Lake Formation. Not used in the normal course of AWS Glue operations.
|
|
48
|
+
*/
|
|
32
49
|
CreateTableDefaultPermissions?: PrincipalPrivileges[];
|
|
50
|
+
/**
|
|
51
|
+
* A description of the database.
|
|
52
|
+
*/
|
|
33
53
|
Description?: string;
|
|
54
|
+
/**
|
|
55
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
56
|
+
*/
|
|
34
57
|
FederatedDatabase?: FederatedDatabase;
|
|
58
|
+
/**
|
|
59
|
+
* The location of the database (for example, an HDFS path).
|
|
60
|
+
*/
|
|
35
61
|
LocationUri?: string;
|
|
62
|
+
/**
|
|
63
|
+
* The name of the database. For hive compatibility, this is folded to lowercase when it is stored.
|
|
64
|
+
*/
|
|
36
65
|
Name?: string;
|
|
66
|
+
/**
|
|
67
|
+
* These key-value pairs define parameters and properties of the database.
|
|
68
|
+
*/
|
|
37
69
|
Parameters?: Record<string, any>;
|
|
70
|
+
/**
|
|
71
|
+
* A DatabaseIdentifier structure that describes a target database for resource linking.
|
|
72
|
+
*/
|
|
38
73
|
TargetDatabase?: DatabaseIdentifier;
|
|
39
74
|
};
|
|
40
75
|
/**
|
|
41
76
|
* Type definition for `AWS::Glue::Database.DataLakePrincipal`.
|
|
77
|
+
* The AWS Lake Formation principal.
|
|
42
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-datalakeprincipal.html}
|
|
43
79
|
*/
|
|
44
80
|
export type DataLakePrincipal = {
|
|
81
|
+
/**
|
|
82
|
+
* An identifier for the AWS Lake Formation principal.
|
|
83
|
+
*/
|
|
45
84
|
DataLakePrincipalIdentifier?: string;
|
|
46
85
|
};
|
|
47
86
|
/**
|
|
48
87
|
* Type definition for `AWS::Glue::Database.FederatedDatabase`.
|
|
88
|
+
* A FederatedDatabase structure that references an entity outside the AWS Glue Data Catalog.
|
|
49
89
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-federateddatabase.html}
|
|
50
90
|
*/
|
|
51
91
|
export type FederatedDatabase = {
|
|
92
|
+
/**
|
|
93
|
+
* The name of the connection to the external metastore.
|
|
94
|
+
*/
|
|
52
95
|
ConnectionName?: string;
|
|
96
|
+
/**
|
|
97
|
+
* A unique identifier for the federated database.
|
|
98
|
+
*/
|
|
53
99
|
Identifier?: string;
|
|
54
100
|
};
|
|
55
101
|
/**
|
|
56
102
|
* Type definition for `AWS::Glue::Database.PrincipalPrivileges`.
|
|
103
|
+
* The permissions granted to a principal.
|
|
57
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-database-principalprivileges.html}
|
|
58
105
|
*/
|
|
59
106
|
export type PrincipalPrivileges = {
|
|
107
|
+
/**
|
|
108
|
+
* The permissions that are granted to the principal.
|
|
109
|
+
*/
|
|
60
110
|
Permissions?: string[];
|
|
111
|
+
/**
|
|
112
|
+
* The principal who is granted permissions.
|
|
113
|
+
*/
|
|
61
114
|
Principal?: DataLakePrincipal;
|
|
62
115
|
};
|
|
63
116
|
/**
|
|
64
117
|
* Resource Type definition for AWS::Glue::Database
|
|
65
118
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-database.html}
|
|
66
119
|
*/
|
|
67
|
-
export declare class GlueDatabase extends $Resource<"AWS::Glue::Database", GlueDatabaseProperties,
|
|
120
|
+
export declare class GlueDatabase extends $Resource<"AWS::Glue::Database", GlueDatabaseProperties, Record<string, never>> {
|
|
68
121
|
static readonly Type = "AWS::Glue::Database";
|
|
69
122
|
constructor(logicalId: string, properties: GlueDatabaseProperties, options?: $ResourceOptions);
|
|
70
123
|
}
|
package/lib/AWS-IVS-Channel.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type IVSChannelProperties = {
|
|
|
27
27
|
/**
|
|
28
28
|
* Optional transcode preset for the channel. This is selectable only for ADVANCED_HD and ADVANCED_SD channel types. For those channel types, the default preset is HIGHER_BANDWIDTH_DELIVERY. For other channel types (BASIC and STANDARD), preset is the empty string ("").
|
|
29
29
|
*/
|
|
30
|
-
Preset?: "HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY";
|
|
30
|
+
Preset?: "" | "HIGHER_BANDWIDTH_DELIVERY" | "CONSTRAINED_BANDWIDTH_DELIVERY";
|
|
31
31
|
/**
|
|
32
32
|
* Recording Configuration ARN. A value other than an empty string indicates that recording is enabled. Default: "" (recording is disabled).
|
|
33
33
|
* @minLength `0`
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
6
|
+
*/
|
|
7
|
+
export type IVSPublicKeyProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Name of the public key to be imported. The value does not need to be unique.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `128`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9-_]*$`
|
|
13
|
+
*/
|
|
14
|
+
Name?: string;
|
|
15
|
+
/**
|
|
16
|
+
* The public portion of a customer-generated key pair.
|
|
17
|
+
* @pattern `-----BEGIN PUBLIC KEY-----\r?\n([a-zA-Z0-9+/=\r\n]+)\r?\n-----END PUBLIC KEY-----(\r?\n)?`
|
|
18
|
+
*/
|
|
19
|
+
PublicKeyMaterial?: string;
|
|
20
|
+
/**
|
|
21
|
+
* A list of key-value pairs that contain metadata for the asset model.
|
|
22
|
+
* @maxLength `50`
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[];
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::IVS::PublicKey`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html#aws-resource-ivs-publickey-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type IVSPublicKeyAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* Key-pair identifier.
|
|
33
|
+
* @minLength `1`
|
|
34
|
+
* @maxLength `128`
|
|
35
|
+
* @pattern `^arn:aws:ivs:[a-z0-9-]+:[0-9]+:public-key/[a-zA-Z0-9-]+$`
|
|
36
|
+
*/
|
|
37
|
+
Arn: string;
|
|
38
|
+
/**
|
|
39
|
+
* Key-pair identifier.
|
|
40
|
+
*/
|
|
41
|
+
Fingerprint: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IVS::PublicKey.Tag`.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-publickey-tag.html}
|
|
46
|
+
*/
|
|
47
|
+
export type Tag = {
|
|
48
|
+
/**
|
|
49
|
+
* @minLength `1`
|
|
50
|
+
* @maxLength `128`
|
|
51
|
+
*/
|
|
52
|
+
Key: string;
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
* @maxLength `256`
|
|
56
|
+
*/
|
|
57
|
+
Value: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
62
|
+
*/
|
|
63
|
+
export declare class IVSPublicKey extends $Resource<"AWS::IVS::PublicKey", IVSPublicKeyProperties, IVSPublicKeyAttributes> {
|
|
64
|
+
static readonly Type = "AWS::IVS::PublicKey";
|
|
65
|
+
constructor(logicalId: string, properties: IVSPublicKeyProperties, options?: $ResourceOptions);
|
|
66
|
+
}
|
|
67
|
+
//# sourceMappingURL=AWS-IVS-PublicKey.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::IVS::PublicKey
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-publickey.html}
|
|
5
|
+
*/
|
|
6
|
+
export class IVSPublicKey extends $Resource {
|
|
7
|
+
static Type = "AWS::IVS::PublicKey";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, IVSPublicKey.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-IVS-PublicKey.js.map
|
package/lib/AWS-IVS-Stage.d.ts
CHANGED
|
@@ -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-ivs-stage.html}
|
|
6
6
|
*/
|
|
7
7
|
export type IVSStageProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
10
|
+
*/
|
|
11
|
+
AutoParticipantRecordingConfiguration?: AutoParticipantRecordingConfiguration;
|
|
8
12
|
/**
|
|
9
13
|
* Stage name
|
|
10
14
|
* @minLength `0`
|
|
@@ -36,6 +40,26 @@ export type IVSStageAttributes = {
|
|
|
36
40
|
*/
|
|
37
41
|
Arn: string;
|
|
38
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::IVS::Stage.AutoParticipantRecordingConfiguration`.
|
|
45
|
+
* Configuration object for individual participant recording, to attach to the new stage.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html}
|
|
47
|
+
*/
|
|
48
|
+
export type AutoParticipantRecordingConfiguration = {
|
|
49
|
+
/**
|
|
50
|
+
* Types of media to be recorded. Default: AUDIO_VIDEO.
|
|
51
|
+
* @minLength `0`
|
|
52
|
+
* @maxLength `1`
|
|
53
|
+
*/
|
|
54
|
+
MediaTypes?: ("AUDIO_VIDEO" | "AUDIO_ONLY")[];
|
|
55
|
+
/**
|
|
56
|
+
* ARN of the StorageConfiguration resource to use for individual participant recording.
|
|
57
|
+
* @minLength `0`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
* @pattern `^$|^arn:aws:ivs:[a-z0-9-]+:[0-9]+:storage-configuration/[a-zA-Z0-9-]+$`
|
|
60
|
+
*/
|
|
61
|
+
StorageConfigurationArn: string;
|
|
62
|
+
};
|
|
39
63
|
/**
|
|
40
64
|
* Type definition for `AWS::IVS::Stage.Tag`.
|
|
41
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-tag.html}
|
|
@@ -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`
|
|
@@ -65,7 +65,7 @@ export type LocationAPIKeyAttributes = {
|
|
|
65
65
|
export type ApiKeyRestrictions = {
|
|
66
66
|
/**
|
|
67
67
|
* @minLength `1`
|
|
68
|
-
* @maxLength `
|
|
68
|
+
* @maxLength `24`
|
|
69
69
|
*/
|
|
70
70
|
AllowActions: string[];
|
|
71
71
|
/**
|
|
@@ -75,7 +75,7 @@ export type ApiKeyRestrictions = {
|
|
|
75
75
|
AllowReferers?: string[];
|
|
76
76
|
/**
|
|
77
77
|
* @minLength `1`
|
|
78
|
-
* @maxLength `
|
|
78
|
+
* @maxLength `8`
|
|
79
79
|
*/
|
|
80
80
|
AllowResources: string[];
|
|
81
81
|
};
|
|
@@ -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
|
|
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
|
|
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
|
|
119
|
+
If you specify the KmsKeyId property, then you must enable encryption and set this property to true.
|
|
120
120
|
|
|
121
|
-
If you
|
|
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 `
|
|
106
|
+
* @minLength `1`
|
|
107
107
|
* @maxLength `256`
|
|
108
108
|
*/
|
|
109
|
-
Value
|
|
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}
|