@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.
@@ -0,0 +1,162 @@
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::ObservabilityAdmin::TelemetryPipelines
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
6
+ */
7
+ export type ObservabilityAdminTelemetryPipelinesProperties = {
8
+ Configuration: TelemetryPipelineConfiguration;
9
+ /**
10
+ * @minLength `3`
11
+ * @maxLength `28`
12
+ * @pattern `[a-z][a-z0-9\-]+`
13
+ */
14
+ Name?: string;
15
+ /**
16
+ * An array of key-value pairs to apply to this resource
17
+ */
18
+ Tags?: Tag[];
19
+ };
20
+ /**
21
+ * Attribute type definition for `AWS::ObservabilityAdmin::TelemetryPipelines`.
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#aws-resource-observabilityadmin-telemetrypipelines-return-values}
23
+ */
24
+ export type ObservabilityAdminTelemetryPipelinesAttributes = {
25
+ /**
26
+ * @minLength `1`
27
+ * @maxLength `1011`
28
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
29
+ */
30
+ Arn: string;
31
+ Pipeline: {
32
+ /**
33
+ * @minLength `1`
34
+ * @maxLength `1011`
35
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
36
+ */
37
+ Arn: string;
38
+ Configuration: {
39
+ /**
40
+ * @minLength `1`
41
+ * @maxLength `24000`
42
+ */
43
+ Body: string;
44
+ };
45
+ CreatedTimeStamp: number;
46
+ LastUpdateTimeStamp: number;
47
+ /**
48
+ * @minLength `3`
49
+ * @maxLength `28`
50
+ * @pattern `[a-z][a-z0-9\-]+`
51
+ */
52
+ Name: string;
53
+ Status: TelemetryPipelineStatus;
54
+ StatusReason: {
55
+ Description: string;
56
+ };
57
+ /**
58
+ * An array of key-value pairs to apply to this resource
59
+ */
60
+ Tags: {
61
+ /**
62
+ * 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 -.
63
+ * @minLength `1`
64
+ * @maxLength `128`
65
+ */
66
+ Key: string;
67
+ /**
68
+ * The value for the tag. You can specify a value that is 0 to 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 -.
69
+ * @minLength `0`
70
+ * @maxLength `256`
71
+ */
72
+ Value: string;
73
+ }[];
74
+ };
75
+ /**
76
+ * @minLength `1`
77
+ * @maxLength `512`
78
+ */
79
+ PipelineIdentifier: string;
80
+ Status: TelemetryPipelineStatus;
81
+ StatusReason: {
82
+ Description: string;
83
+ };
84
+ };
85
+ /**
86
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.Tag`.
87
+ * A key-value pair to associate with a resource
88
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-tag.html}
89
+ */
90
+ export type Tag = {
91
+ /**
92
+ * 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 -.
93
+ * @minLength `1`
94
+ * @maxLength `128`
95
+ */
96
+ Key: string;
97
+ /**
98
+ * The value for the tag. You can specify a value that is 0 to 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 -.
99
+ * @minLength `0`
100
+ * @maxLength `256`
101
+ */
102
+ Value: string;
103
+ };
104
+ /**
105
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipeline`.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipeline.html}
107
+ */
108
+ export type TelemetryPipeline = {
109
+ /**
110
+ * @minLength `1`
111
+ * @maxLength `1011`
112
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
113
+ */
114
+ Arn?: string;
115
+ Configuration?: TelemetryPipelineConfiguration;
116
+ CreatedTimeStamp?: number;
117
+ LastUpdateTimeStamp?: number;
118
+ /**
119
+ * @minLength `3`
120
+ * @maxLength `28`
121
+ * @pattern `[a-z][a-z0-9\-]+`
122
+ */
123
+ Name?: string;
124
+ Status?: TelemetryPipelineStatus;
125
+ StatusReason?: TelemetryPipelineStatusReason;
126
+ /**
127
+ * An array of key-value pairs to apply to this resource
128
+ */
129
+ Tags?: Tag[];
130
+ };
131
+ /**
132
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineConfiguration`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelineconfiguration.html}
134
+ */
135
+ export type TelemetryPipelineConfiguration = {
136
+ /**
137
+ * @minLength `1`
138
+ * @maxLength `24000`
139
+ */
140
+ Body: string;
141
+ };
142
+ /**
143
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatus`.
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatus.html}
145
+ */
146
+ export type TelemetryPipelineStatus = "CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "CREATE_FAILED" | "UPDATE_FAILED";
147
+ /**
148
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryPipelines.TelemetryPipelineStatusReason`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelinestatusreason.html}
150
+ */
151
+ export type TelemetryPipelineStatusReason = {
152
+ Description?: string;
153
+ };
154
+ /**
155
+ * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
156
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
157
+ */
158
+ export declare class ObservabilityAdminTelemetryPipelines extends $Resource<"AWS::ObservabilityAdmin::TelemetryPipelines", ObservabilityAdminTelemetryPipelinesProperties, ObservabilityAdminTelemetryPipelinesAttributes> {
159
+ static readonly Type = "AWS::ObservabilityAdmin::TelemetryPipelines";
160
+ constructor(logicalId: string, properties: ObservabilityAdminTelemetryPipelinesProperties, options?: $ResourceOptions);
161
+ }
162
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryPipelines.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::ObservabilityAdmin::TelemetryPipelines
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
5
+ */
6
+ export class ObservabilityAdminTelemetryPipelines extends $Resource {
7
+ static Type = "AWS::ObservabilityAdmin::TelemetryPipelines";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ObservabilityAdminTelemetryPipelines.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryPipelines.js.map
@@ -25,6 +25,10 @@ export type S3TablesTableProperties = {
25
25
  * Contains details about the snapshot management settings for an Iceberg table. A snapshot is expired when it exceeds MinSnapshotsToKeep and MaxSnapshotAgeHours.
26
26
  */
27
27
  SnapshotManagement?: SnapshotManagement;
28
+ /**
29
+ * Specifies storage class settings for the table
30
+ */
31
+ StorageClassConfiguration?: StorageClassConfiguration;
28
32
  /**
29
33
  * The Amazon Resource Name (ARN) of the specified table bucket.
30
34
  */
@@ -144,6 +148,17 @@ export type SnapshotManagement = {
144
148
  */
145
149
  Status?: "enabled" | "disabled";
146
150
  };
151
+ /**
152
+ * Type definition for `AWS::S3Tables::Table.StorageClassConfiguration`.
153
+ * Specifies storage class settings for the table
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-storageclassconfiguration.html}
155
+ */
156
+ export type StorageClassConfiguration = {
157
+ /**
158
+ * The storage class for the table
159
+ */
160
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
161
+ };
147
162
  /**
148
163
  * Type definition for `AWS::S3Tables::Table.Tag`.
149
164
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-table-tag.html}
@@ -14,6 +14,10 @@ export type S3TablesTableBucketProperties = {
14
14
  * Settings governing the Metric configuration for the table bucket.
15
15
  */
16
16
  MetricsConfiguration?: MetricsConfiguration;
17
+ /**
18
+ * Specifies storage class settings for the table bucket
19
+ */
20
+ StorageClassConfiguration?: StorageClassConfiguration;
17
21
  /**
18
22
  * A name for the table bucket.
19
23
  * @minLength `3`
@@ -65,6 +69,17 @@ export type MetricsConfiguration = {
65
69
  */
66
70
  Status?: "Enabled" | "Disabled";
67
71
  };
72
+ /**
73
+ * Type definition for `AWS::S3Tables::TableBucket.StorageClassConfiguration`.
74
+ * Specifies storage class settings for the table bucket
75
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-storageclassconfiguration.html}
76
+ */
77
+ export type StorageClassConfiguration = {
78
+ /**
79
+ * The storage class for the table bucket
80
+ */
81
+ StorageClass?: "STANDARD" | "INTELLIGENT_TIERING";
82
+ };
68
83
  /**
69
84
  * Type definition for `AWS::S3Tables::TableBucket.Tag`.
70
85
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-tag.html}
@@ -0,0 +1,141 @@
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 schema for AWS::SecurityHub::ConnectorV2
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
6
+ */
7
+ export type SecurityHubConnectorV2Properties = {
8
+ /**
9
+ * A description of the connector
10
+ * @minLength `0`
11
+ * @maxLength `256`
12
+ * @pattern `.*\S.*`
13
+ */
14
+ Description?: string;
15
+ /**
16
+ * The ARN of KMS key used for the connector
17
+ * @minLength `20`
18
+ * @maxLength `2048`
19
+ * @pattern `.*\S.*`
20
+ */
21
+ KmsKeyArn?: string;
22
+ /**
23
+ * The name of the connector
24
+ * @minLength `1`
25
+ * @maxLength `64`
26
+ * @pattern `.*\S.*`
27
+ */
28
+ Name: string;
29
+ /**
30
+ * The provider configuration of the connector
31
+ */
32
+ Provider: Provider;
33
+ /**
34
+ * A key-value pair to associate with a resource.
35
+ */
36
+ Tags?: Tags;
37
+ };
38
+ /**
39
+ * Attribute type definition for `AWS::SecurityHub::ConnectorV2`.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html#aws-resource-securityhub-connectorv2-return-values}
41
+ */
42
+ export type SecurityHubConnectorV2Attributes = {
43
+ /**
44
+ * The ARN of the connector
45
+ * @pattern `^arn:aws\S*:securityhub:[a-z0-9-]+:[0-9]{12}:connectorv2/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
46
+ */
47
+ ConnectorArn: string;
48
+ /**
49
+ * The ID of the connector
50
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
51
+ */
52
+ ConnectorId: string;
53
+ /**
54
+ * The status of the connector
55
+ */
56
+ ConnectorStatus: "CONNECTED" | "FAILED_TO_CONNECT" | "PENDING_AUTHORIZATION" | "PENDING_CONFIGURATION";
57
+ /**
58
+ * The timestamp formatted in ISO8601
59
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
60
+ */
61
+ CreatedAt: string;
62
+ /**
63
+ * The timestamp formatted in ISO8601
64
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
65
+ */
66
+ LastCheckedAt: string;
67
+ /**
68
+ * The timestamp formatted in ISO8601
69
+ * @pattern `^(\d\d\d\d)-([0][1-9]|[1][0-2])-([0][1-9]|[1-2](\d)|[3][0-1])[T](?:([0-1](\d)|[2][0-3]):[0-5](\d):[0-5](\d)|23:59:60)(?:\.(\d)+)?([Z]|[+-](\d\d)(:?(\d\d))?)$`
70
+ */
71
+ LastUpdatedAt: string;
72
+ /**
73
+ * The message of the connector status change
74
+ */
75
+ Message: string;
76
+ };
77
+ /**
78
+ * Type definition for `AWS::SecurityHub::ConnectorV2.AuthStatus`.
79
+ * The auth status of the connector
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-authstatus.html}
81
+ */
82
+ export type AuthStatus = "ACTIVE" | "FAILED";
83
+ /**
84
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Provider`.
85
+ * The provider configuration of the connector
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-provider.html}
87
+ */
88
+ export type Provider = {
89
+ JiraCloud: {
90
+ /**
91
+ * The auth status of the connector
92
+ */
93
+ AuthStatus?: AuthStatus;
94
+ /**
95
+ * The authUrl of the JiraCloud connector
96
+ * @pattern `.*\S.*`
97
+ */
98
+ AuthUrl?: string;
99
+ CloudId?: string;
100
+ Domain?: string;
101
+ /**
102
+ * @minLength `2`
103
+ * @maxLength `10`
104
+ */
105
+ ProjectKey: string;
106
+ };
107
+ } | {
108
+ ServiceNow: {
109
+ /**
110
+ * The auth status of the connector
111
+ */
112
+ AuthStatus?: AuthStatus;
113
+ /**
114
+ * @minLength `1`
115
+ * @maxLength `128`
116
+ */
117
+ InstanceName: string;
118
+ /**
119
+ * The ARN of secrets manager containing ClientId and ClientSecret
120
+ * @minLength `20`
121
+ * @maxLength `2048`
122
+ * @pattern `.*\S.*`
123
+ */
124
+ SecretArn: string;
125
+ };
126
+ };
127
+ /**
128
+ * Type definition for `AWS::SecurityHub::ConnectorV2.Tags`.
129
+ * A key-value pair to associate with a resource.
130
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-tags.html}
131
+ */
132
+ export type Tags = Record<string, string>;
133
+ /**
134
+ * Resource schema for AWS::SecurityHub::ConnectorV2
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
136
+ */
137
+ export declare class SecurityHubConnectorV2 extends $Resource<"AWS::SecurityHub::ConnectorV2", SecurityHubConnectorV2Properties, SecurityHubConnectorV2Attributes> {
138
+ static readonly Type = "AWS::SecurityHub::ConnectorV2";
139
+ constructor(logicalId: string, properties: SecurityHubConnectorV2Properties, options?: $ResourceOptions);
140
+ }
141
+ //# sourceMappingURL=AWS-SecurityHub-ConnectorV2.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource schema for AWS::SecurityHub::ConnectorV2
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-securityhub-connectorv2.html}
5
+ */
6
+ export class SecurityHubConnectorV2 extends $Resource {
7
+ static Type = "AWS::SecurityHub::ConnectorV2";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SecurityHubConnectorV2.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SecurityHub-ConnectorV2.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.491",
3
+ "version": "0.1.493",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },