@awboost/cfn-resource-types 0.1.491 → 0.1.493
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-Connect-DataTable.d.ts +109 -0
- package/lib/AWS-Connect-DataTable.js +12 -0
- package/lib/AWS-Connect-DataTableAttribute.d.ts +93 -0
- package/lib/AWS-Connect-DataTableAttribute.js +12 -0
- package/lib/AWS-Connect-DataTableRecord.d.ts +55 -0
- package/lib/AWS-Connect-DataTableRecord.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +160 -18
- package/lib/AWS-GameLift-Script.d.ts +1 -1
- package/lib/AWS-Glue-IdentityCenterConfiguration.d.ts +49 -0
- package/lib/AWS-Glue-IdentityCenterConfiguration.js +12 -0
- package/lib/AWS-MediaLive-Channel.d.ts +8 -0
- package/lib/AWS-MediaLive-Input.d.ts +17 -0
- package/lib/AWS-ObservabilityAdmin-S3TableIntegration.d.ts +118 -0
- package/lib/AWS-ObservabilityAdmin-S3TableIntegration.js +13 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryPipelines.d.ts +162 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryPipelines.js +12 -0
- package/lib/AWS-S3Tables-Table.d.ts +15 -0
- package/lib/AWS-S3Tables-TableBucket.d.ts +15 -0
- package/lib/AWS-SecurityHub-ConnectorV2.d.ts +141 -0
- package/lib/AWS-SecurityHub-ConnectorV2.js +12 -0
- package/package.json +1 -1
|
@@ -0,0 +1,109 @@
|
|
|
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::Connect::DataTable
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ConnectDataTableProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the Data Table.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `250`
|
|
12
|
+
* @pattern `^[\P{C}
|
|
13
|
+
]+$`
|
|
14
|
+
*/
|
|
15
|
+
Description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The identifier of the Amazon Connect instance.
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `100`
|
|
20
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
|
21
|
+
*/
|
|
22
|
+
InstanceArn?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The name of the Data Table
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `128`
|
|
27
|
+
* @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
|
|
28
|
+
*/
|
|
29
|
+
Name?: string;
|
|
30
|
+
/**
|
|
31
|
+
* The status of the Data Table
|
|
32
|
+
*/
|
|
33
|
+
Status?: "PUBLISHED";
|
|
34
|
+
/**
|
|
35
|
+
* One or more tags.
|
|
36
|
+
* @maxLength `50`
|
|
37
|
+
*/
|
|
38
|
+
Tags?: Tag[];
|
|
39
|
+
/**
|
|
40
|
+
* The time zone of the Data Table
|
|
41
|
+
*/
|
|
42
|
+
TimeZone?: string;
|
|
43
|
+
/**
|
|
44
|
+
* The value lock level of the Data Table
|
|
45
|
+
*/
|
|
46
|
+
ValueLockLevel?: "NONE";
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Attribute type definition for `AWS::Connect::DataTable`.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html#aws-resource-connect-datatable-return-values}
|
|
51
|
+
*/
|
|
52
|
+
export type ConnectDataTableAttributes = {
|
|
53
|
+
/**
|
|
54
|
+
* The arn of the Data Table
|
|
55
|
+
* @minLength `1`
|
|
56
|
+
* @maxLength `2048`
|
|
57
|
+
*/
|
|
58
|
+
Arn: string;
|
|
59
|
+
/**
|
|
60
|
+
* The creation time of the Data Table
|
|
61
|
+
*/
|
|
62
|
+
CreatedTime: number;
|
|
63
|
+
/**
|
|
64
|
+
* Last modified region.
|
|
65
|
+
* @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
|
|
66
|
+
*/
|
|
67
|
+
LastModifiedRegion: string;
|
|
68
|
+
/**
|
|
69
|
+
* Last modified time.
|
|
70
|
+
*/
|
|
71
|
+
LastModifiedTime: number;
|
|
72
|
+
/**
|
|
73
|
+
* The lock version of the Data Table
|
|
74
|
+
*/
|
|
75
|
+
LockVersion: {
|
|
76
|
+
/**
|
|
77
|
+
* The data table for the lock version
|
|
78
|
+
*/
|
|
79
|
+
DataTable: string;
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Type definition for `AWS::Connect::DataTable.Tag`.
|
|
84
|
+
* A key-value pair to associate with a resource.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatable-tag.html}
|
|
86
|
+
*/
|
|
87
|
+
export type Tag = {
|
|
88
|
+
/**
|
|
89
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
90
|
+
* @minLength `1`
|
|
91
|
+
* @maxLength `128`
|
|
92
|
+
* @pattern `^(?!aws:)[a-zA-Z+-=._:/]+$`
|
|
93
|
+
*/
|
|
94
|
+
Key: string;
|
|
95
|
+
/**
|
|
96
|
+
* The value for the tag. You can specify a value that is maximum of 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
97
|
+
* @maxLength `256`
|
|
98
|
+
*/
|
|
99
|
+
Value: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Resource Type definition for AWS::Connect::DataTable
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
|
|
104
|
+
*/
|
|
105
|
+
export declare class ConnectDataTable extends $Resource<"AWS::Connect::DataTable", ConnectDataTableProperties, ConnectDataTableAttributes> {
|
|
106
|
+
static readonly Type = "AWS::Connect::DataTable";
|
|
107
|
+
constructor(logicalId: string, properties: ConnectDataTableProperties, options?: $ResourceOptions);
|
|
108
|
+
}
|
|
109
|
+
//# sourceMappingURL=AWS-Connect-DataTable.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::Connect::DataTable
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatable.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ConnectDataTable extends $Resource {
|
|
7
|
+
static Type = "AWS::Connect::DataTable";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ConnectDataTable.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Connect-DataTable.js.map
|
|
@@ -0,0 +1,93 @@
|
|
|
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::Connect::DataTableAttribute
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ConnectDataTableAttributeProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `2048`
|
|
11
|
+
*/
|
|
12
|
+
DataTableArn?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @minLength `0`
|
|
15
|
+
* @maxLength `250`
|
|
16
|
+
* @pattern `^[\P{C}
|
|
17
|
+
]+$`
|
|
18
|
+
*/
|
|
19
|
+
Description?: string;
|
|
20
|
+
/**
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `100`
|
|
23
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
|
24
|
+
*/
|
|
25
|
+
InstanceArn?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `128`
|
|
29
|
+
* @pattern `^[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
|
|
30
|
+
*/
|
|
31
|
+
Name?: string;
|
|
32
|
+
Primary?: boolean;
|
|
33
|
+
Validation?: {
|
|
34
|
+
Enum?: {
|
|
35
|
+
Strict?: boolean;
|
|
36
|
+
Values?: string[];
|
|
37
|
+
};
|
|
38
|
+
ExclusiveMaximum?: number;
|
|
39
|
+
ExclusiveMinimum?: number;
|
|
40
|
+
/**
|
|
41
|
+
* @min `0`
|
|
42
|
+
*/
|
|
43
|
+
MaxLength?: number;
|
|
44
|
+
/**
|
|
45
|
+
* @min `0`
|
|
46
|
+
*/
|
|
47
|
+
MaxValues?: number;
|
|
48
|
+
Maximum?: number;
|
|
49
|
+
/**
|
|
50
|
+
* @min `0`
|
|
51
|
+
*/
|
|
52
|
+
MinLength?: number;
|
|
53
|
+
/**
|
|
54
|
+
* @min `0`
|
|
55
|
+
*/
|
|
56
|
+
MinValues?: number;
|
|
57
|
+
Minimum?: number;
|
|
58
|
+
/**
|
|
59
|
+
* @min `0`
|
|
60
|
+
*/
|
|
61
|
+
MultipleOf?: number;
|
|
62
|
+
};
|
|
63
|
+
ValueType?: "TEXT" | "NUMBER" | "BOOLEAN" | "TEXT_LIST" | "NUMBER_LIST";
|
|
64
|
+
};
|
|
65
|
+
/**
|
|
66
|
+
* Attribute type definition for `AWS::Connect::DataTableAttribute`.
|
|
67
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html#aws-resource-connect-datatableattribute-return-values}
|
|
68
|
+
*/
|
|
69
|
+
export type ConnectDataTableAttributeAttributes = {
|
|
70
|
+
/**
|
|
71
|
+
* @minLength `1`
|
|
72
|
+
* @maxLength `256`
|
|
73
|
+
*/
|
|
74
|
+
AttributeId: string;
|
|
75
|
+
/**
|
|
76
|
+
* @pattern `[a-z]{2}(-[a-z]+){1,2}(-[0-9])?`
|
|
77
|
+
*/
|
|
78
|
+
LastModifiedRegion: string;
|
|
79
|
+
LastModifiedTime: number;
|
|
80
|
+
LockVersion: {
|
|
81
|
+
Attribute: string;
|
|
82
|
+
DataTable: string;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* Resource Type definition for AWS::Connect::DataTableAttribute
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
|
|
88
|
+
*/
|
|
89
|
+
export declare class ConnectDataTableAttribute extends $Resource<"AWS::Connect::DataTableAttribute", ConnectDataTableAttributeProperties, ConnectDataTableAttributeAttributes> {
|
|
90
|
+
static readonly Type = "AWS::Connect::DataTableAttribute";
|
|
91
|
+
constructor(logicalId: string, properties: ConnectDataTableAttributeProperties, options?: $ResourceOptions);
|
|
92
|
+
}
|
|
93
|
+
//# sourceMappingURL=AWS-Connect-DataTableAttribute.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::Connect::DataTableAttribute
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatableattribute.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ConnectDataTableAttribute extends $Resource {
|
|
7
|
+
static Type = "AWS::Connect::DataTableAttribute";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ConnectDataTableAttribute.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Connect-DataTableAttribute.js.map
|
|
@@ -0,0 +1,55 @@
|
|
|
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::Connect::DataTableRecord
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ConnectDataTableRecordProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* @minLength `1`
|
|
10
|
+
* @maxLength `2048`
|
|
11
|
+
*/
|
|
12
|
+
DataTableArn?: string;
|
|
13
|
+
DataTableRecord?: {
|
|
14
|
+
PrimaryValues?: Value[];
|
|
15
|
+
Values: Value[];
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `100`
|
|
20
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
|
21
|
+
*/
|
|
22
|
+
InstanceArn?: string;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::Connect::DataTableRecord`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html#aws-resource-connect-datatablerecord-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type ConnectDataTableRecordAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
* @maxLength `256`
|
|
32
|
+
*/
|
|
33
|
+
RecordId: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Type definition for `AWS::Connect::DataTableRecord.Value`.
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-datatablerecord-value.html}
|
|
38
|
+
*/
|
|
39
|
+
export type Value = {
|
|
40
|
+
/**
|
|
41
|
+
* @minLength `1`
|
|
42
|
+
* @maxLength `256`
|
|
43
|
+
*/
|
|
44
|
+
AttributeId?: string;
|
|
45
|
+
AttributeValue?: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Resource Type definition for AWS::Connect::DataTableRecord
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
|
|
50
|
+
*/
|
|
51
|
+
export declare class ConnectDataTableRecord extends $Resource<"AWS::Connect::DataTableRecord", ConnectDataTableRecordProperties, ConnectDataTableRecordAttributes> {
|
|
52
|
+
static readonly Type = "AWS::Connect::DataTableRecord";
|
|
53
|
+
constructor(logicalId: string, properties: ConnectDataTableRecordProperties, options?: $ResourceOptions);
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=AWS-Connect-DataTableRecord.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::Connect::DataTableRecord
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-datatablerecord.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ConnectDataTableRecord extends $Resource {
|
|
7
|
+
static Type = "AWS::Connect::DataTableRecord";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ConnectDataTableRecord.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Connect-DataTableRecord.js.map
|