@awboost/cfn-resource-types 0.1.397 → 0.1.399

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.
@@ -54,6 +54,12 @@ export type ARCRegionSwitchPlanAttributes = {
54
54
  * @pattern `^\d{12}$`
55
55
  */
56
56
  Owner: string;
57
+ Route53HealthChecks: {
58
+ HealthCheckIds: string[];
59
+ HostedZoneIds: string[];
60
+ RecordNames: string[];
61
+ Regions: string[];
62
+ };
57
63
  Version: string;
58
64
  };
59
65
  /**
@@ -10,17 +10,24 @@ export type EFSMountTargetProperties = {
10
10
  */
11
11
  FileSystemId: string;
12
12
  /**
13
- * Valid IPv4 address within the address range of the specified subnet.
13
+ * If the ``IpAddressType`` for the mount target is IPv4 ( ``IPV4_ONLY`` or ``DUAL_STACK``), then specify the IPv4 address to use. If you do not specify an ``IpAddress``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
14
14
  */
15
15
  IpAddress?: string;
16
+ /**
17
+ * The IP address type for the mount target. The possible values are ``IPV4_ONLY`` (only IPv4 addresses), ``IPV6_ONLY`` (only IPv6 addresses), and ``DUAL_STACK`` (dual-stack, both IPv4 and IPv6 addresses). If you don’t specify an ``IpAddressType``, then ``IPV4_ONLY`` is used.
18
+ The ``IPAddressType`` must match the IP type of the subnet. Additionally, the ``IPAddressType`` parameter overrides the value set as the default IP address for the subnet in the VPC. For example, if the ``IPAddressType`` is ``IPV4_ONLY`` and ``AssignIpv6AddressOnCreation`` is ``true``, then IPv4 is used for the mount target. For more information, see [Modify the IP addressing attributes of your subnet](https://docs.aws.amazon.com/vpc/latest/userguide/subnet-public-ip.html).
19
+ */
16
20
  IpAddressType?: "IPV4_ONLY" | "IPV6_ONLY" | "DUAL_STACK";
21
+ /**
22
+ * If the ``IPAddressType`` for the mount target is IPv6 (``IPV6_ONLY`` or ``DUAL_STACK``), then specify the IPv6 address to use. If you do not specify an ``Ipv6Address``, then Amazon EFS selects an unused IP address from the subnet specified for ``SubnetId``.
23
+ */
17
24
  Ipv6Address?: string;
18
25
  /**
19
- * VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table).
26
+ * VPC security group IDs, of the form ``sg-xxxxxxxx``. These must be for the same VPC as the subnet specified. The maximum number of security groups depends on account quota. For more information, see [Amazon VPC Quotas](https://docs.aws.amazon.com/vpc/latest/userguide/amazon-vpc-limits.html) in the *Amazon VPC User Guide* (see the *Security Groups* table). If you don't specify a security group, then Amazon EFS uses the default security group for the subnet's VPC.
20
27
  */
21
28
  SecurityGroups: string[];
22
29
  /**
23
- * The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone.
30
+ * The ID of the subnet to add the mount target in. For One Zone file systems, use the subnet that is associated with the file system's Availability Zone. The subnet type must be the same type as the ``IpAddressType``.
24
31
  */
25
32
  SubnetId: string;
26
33
  };
@@ -8,11 +8,11 @@ export type IVSPlaybackRestrictionPolicyProperties = {
8
8
  /**
9
9
  * A list of country codes that control geoblocking restriction. Allowed values are the officially assigned ISO 3166-1 alpha-2 codes. Default: All countries (an empty array).
10
10
  */
11
- AllowedCountries: string[];
11
+ AllowedCountries?: string[];
12
12
  /**
13
13
  * A list of origin sites that control CORS restriction. Allowed values are the same as valid values of the Origin header defined at https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin
14
14
  */
15
- AllowedOrigins: string[];
15
+ AllowedOrigins?: string[];
16
16
  /**
17
17
  * Whether channel playback is constrained by origin site.
18
18
  */
@@ -47,12 +47,34 @@ export type IVSStageAttributes = {
47
47
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html}
48
48
  */
49
49
  export type AutoParticipantRecordingConfiguration = {
50
+ /**
51
+ * HLS configuration object for individual participant recording.
52
+ */
53
+ HlsConfiguration?: {
54
+ /**
55
+ * An object representing a configuration of participant HLS recordings for individual participant recording.
56
+ */
57
+ ParticipantRecordingHlsConfiguration?: {
58
+ /**
59
+ * Defines the target duration for recorded segments generated when recording a stage participant. Segments may have durations longer than the specified value when needed to ensure each segment begins with a keyframe. Default: 6.
60
+ * @min `2`
61
+ * @max `10`
62
+ */
63
+ TargetSegmentDurationSeconds?: number;
64
+ };
65
+ };
50
66
  /**
51
67
  * Types of media to be recorded. Default: AUDIO_VIDEO.
52
68
  * @minLength `0`
53
69
  * @maxLength `1`
54
70
  */
55
71
  MediaTypes?: ("AUDIO_VIDEO" | "AUDIO_ONLY")[];
72
+ /**
73
+ * If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together. The default value is 0, which disables merging.
74
+ * @min `0`
75
+ * @max `300`
76
+ */
77
+ RecordingReconnectWindowSeconds?: number;
56
78
  /**
57
79
  * ARN of the StorageConfiguration resource to use for individual participant recording.
58
80
  * @minLength `0`
@@ -60,6 +82,32 @@ export type AutoParticipantRecordingConfiguration = {
60
82
  * @pattern `^$|^arn:aws:ivs:[a-z0-9-]+:[0-9]+:storage-configuration/[a-zA-Z0-9-]+$`
61
83
  */
62
84
  StorageConfigurationArn: string;
85
+ /**
86
+ * A complex type that allows you to enable/disable the recording of thumbnails for individual participant recording and modify the interval at which thumbnails are generated for the live session.
87
+ */
88
+ ThumbnailConfiguration?: {
89
+ /**
90
+ * An object representing a configuration of thumbnails for recorded video from an individual participant.
91
+ */
92
+ ParticipantThumbnailConfiguration?: {
93
+ /**
94
+ * Thumbnail recording mode. Default: DISABLED.
95
+ */
96
+ RecordingMode?: "INTERVAL" | "DISABLED";
97
+ /**
98
+ * Indicates the format in which thumbnails are recorded. SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.
99
+ * @minLength `0`
100
+ * @maxLength `2`
101
+ */
102
+ Storage?: ("SEQUENTIAL" | "LATEST")[];
103
+ /**
104
+ * The targeted thumbnail-generation interval in seconds. This is configurable only if recordingMode is INTERVAL. Default: 60.
105
+ * @min `1`
106
+ * @max `86400`
107
+ */
108
+ TargetIntervalSeconds?: number;
109
+ };
110
+ };
63
111
  };
64
112
  /**
65
113
  * Type definition for `AWS::IVS::Stage.Tag`.
@@ -0,0 +1,151 @@
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
+ * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
6
+ */
7
+ export type ObservabilityAdminOrganizationTelemetryRuleProperties = {
8
+ /**
9
+ * The telemetry rule
10
+ */
11
+ Rule: TelemetryRule;
12
+ /**
13
+ * The name of the organization telemetry rule
14
+ * @minLength `1`
15
+ * @maxLength `100`
16
+ * @pattern `^[0-9A-Za-z-]+$`
17
+ */
18
+ RuleName: string;
19
+ /**
20
+ * An array of key-value pairs to apply to this resource
21
+ */
22
+ Tags?: Tag[];
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html#aws-resource-observabilityadmin-organizationtelemetryrule-return-values}
27
+ */
28
+ export type ObservabilityAdminOrganizationTelemetryRuleAttributes = {
29
+ /**
30
+ * The arn of the organization telemetry rule
31
+ * @minLength `1`
32
+ * @maxLength `1011`
33
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
34
+ */
35
+ RuleArn: string;
36
+ };
37
+ /**
38
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.DestinationType`.
39
+ * Type of telemetry destination
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-destinationtype.html}
41
+ */
42
+ export type DestinationType = "cloud-watch-logs";
43
+ /**
44
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.ResourceType`.
45
+ * Resource Type associated with the Organization Telemetry Rule
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-resourcetype.html}
47
+ */
48
+ export type ResourceType = "AWS::EC2::VPC";
49
+ /**
50
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Tag`.
51
+ * A key-value pair to associate with a resource
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-tag.html}
53
+ */
54
+ export type Tag = {
55
+ /**
56
+ * 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 -.
57
+ * @minLength `1`
58
+ * @maxLength `128`
59
+ */
60
+ Key: string;
61
+ /**
62
+ * 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 -.
63
+ * @minLength `0`
64
+ * @maxLength `256`
65
+ */
66
+ Value: string;
67
+ };
68
+ /**
69
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryDestinationConfiguration`.
70
+ * The destination configuration for telemetry data
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html}
72
+ */
73
+ export type TelemetryDestinationConfiguration = {
74
+ /**
75
+ * Pattern for telemetry data destination
76
+ */
77
+ DestinationPattern?: string;
78
+ /**
79
+ * Type of telemetry destination
80
+ */
81
+ DestinationType?: DestinationType;
82
+ /**
83
+ * Number of days to retain the telemetry data in the specified destination
84
+ */
85
+ RetentionInDays?: number;
86
+ /**
87
+ * Telemetry parameters for VPC Flow logs
88
+ */
89
+ VPCFlowLogParameters?: VPCFlowLogParameters;
90
+ };
91
+ /**
92
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryRule`.
93
+ * The telemetry rule
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html}
95
+ */
96
+ export type TelemetryRule = {
97
+ /**
98
+ * The destination configuration for telemetry data
99
+ */
100
+ DestinationConfiguration?: TelemetryDestinationConfiguration;
101
+ /**
102
+ * Resource Type associated with the Organization Telemetry Rule
103
+ */
104
+ ResourceType: ResourceType;
105
+ /**
106
+ * Selection Criteria on scope level for rule application
107
+ */
108
+ Scope?: string;
109
+ /**
110
+ * Selection Criteria on resource level for rule application
111
+ */
112
+ SelectionCriteria?: string;
113
+ /**
114
+ * Telemetry Type associated with the Organization Telemetry Rule
115
+ */
116
+ TelemetryType: TelemetryType;
117
+ };
118
+ /**
119
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryType`.
120
+ * Telemetry Type associated with the Organization Telemetry Rule
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrytype.html}
122
+ */
123
+ export type TelemetryType = "Logs";
124
+ /**
125
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.VPCFlowLogParameters`.
126
+ * Telemetry parameters for VPC Flow logs
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html}
128
+ */
129
+ export type VPCFlowLogParameters = {
130
+ /**
131
+ * The fields to include in the flow log record. If you omit this parameter, the flow log is created using the default format.
132
+ */
133
+ LogFormat?: string;
134
+ /**
135
+ * The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record. Default is 600s.
136
+ */
137
+ MaxAggregationInterval?: number;
138
+ /**
139
+ * The type of traffic captured for the flow log. Default is ALL
140
+ */
141
+ TrafficType?: string;
142
+ };
143
+ /**
144
+ * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
145
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
146
+ */
147
+ export declare class ObservabilityAdminOrganizationTelemetryRule extends $Resource<"AWS::ObservabilityAdmin::OrganizationTelemetryRule", ObservabilityAdminOrganizationTelemetryRuleProperties, ObservabilityAdminOrganizationTelemetryRuleAttributes> {
148
+ static readonly Type = "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
149
+ constructor(logicalId: string, properties: ObservabilityAdminOrganizationTelemetryRuleProperties, options?: $ResourceOptions);
150
+ }
151
+ //# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationTelemetryRule.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
5
+ */
6
+ export class ObservabilityAdminOrganizationTelemetryRule extends $Resource {
7
+ static Type = "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ObservabilityAdminOrganizationTelemetryRule.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationTelemetryRule.js.map
@@ -0,0 +1,147 @@
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
+ * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
6
+ */
7
+ export type ObservabilityAdminTelemetryRuleProperties = {
8
+ /**
9
+ * The telemetry rule
10
+ */
11
+ Rule: TelemetryRule;
12
+ /**
13
+ * The name of the telemetry rule
14
+ * @minLength `1`
15
+ * @maxLength `100`
16
+ * @pattern `^[0-9A-Za-z-]+$`
17
+ */
18
+ RuleName: string;
19
+ /**
20
+ * An array of key-value pairs to apply to this resource
21
+ */
22
+ Tags?: Tag[];
23
+ };
24
+ /**
25
+ * Attribute type definition for `AWS::ObservabilityAdmin::TelemetryRule`.
26
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html#aws-resource-observabilityadmin-telemetryrule-return-values}
27
+ */
28
+ export type ObservabilityAdminTelemetryRuleAttributes = {
29
+ /**
30
+ * The arn of the telemetry rule
31
+ * @minLength `1`
32
+ * @maxLength `1011`
33
+ * @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
34
+ */
35
+ RuleArn: string;
36
+ };
37
+ /**
38
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.DestinationType`.
39
+ * Type of telemetry destination
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-destinationtype.html}
41
+ */
42
+ export type DestinationType = "cloud-watch-logs";
43
+ /**
44
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.ResourceType`.
45
+ * Resource Type associated with the Telemetry Rule
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-resourcetype.html}
47
+ */
48
+ export type ResourceType = "AWS::EC2::VPC";
49
+ /**
50
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Tag`.
51
+ * A key-value pair to associate with a resource
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-tag.html}
53
+ */
54
+ export type Tag = {
55
+ /**
56
+ * 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 -.
57
+ * @minLength `1`
58
+ * @maxLength `128`
59
+ */
60
+ Key: string;
61
+ /**
62
+ * 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 -.
63
+ * @minLength `0`
64
+ * @maxLength `256`
65
+ */
66
+ Value: string;
67
+ };
68
+ /**
69
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryDestinationConfiguration`.
70
+ * The destination configuration for telemetry data
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html}
72
+ */
73
+ export type TelemetryDestinationConfiguration = {
74
+ /**
75
+ * Pattern for telemetry data destination
76
+ */
77
+ DestinationPattern?: string;
78
+ /**
79
+ * Type of telemetry destination
80
+ */
81
+ DestinationType?: DestinationType;
82
+ /**
83
+ * Number of days to retain the telemetry data in the specified destination
84
+ */
85
+ RetentionInDays?: number;
86
+ /**
87
+ * Telemetry parameters for VPC Flow logs
88
+ */
89
+ VPCFlowLogParameters?: VPCFlowLogParameters;
90
+ };
91
+ /**
92
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryRule`.
93
+ * The telemetry rule
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html}
95
+ */
96
+ export type TelemetryRule = {
97
+ /**
98
+ * The destination configuration for telemetry data
99
+ */
100
+ DestinationConfiguration?: TelemetryDestinationConfiguration;
101
+ /**
102
+ * Resource Type associated with the Telemetry Rule
103
+ */
104
+ ResourceType: ResourceType;
105
+ /**
106
+ * Selection Criteria on resource level for rule application
107
+ */
108
+ SelectionCriteria?: string;
109
+ /**
110
+ * Telemetry Type associated with the Telemetry Rule
111
+ */
112
+ TelemetryType: TelemetryType;
113
+ };
114
+ /**
115
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryType`.
116
+ * Telemetry Type associated with the Telemetry Rule
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrytype.html}
118
+ */
119
+ export type TelemetryType = "Logs";
120
+ /**
121
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.VPCFlowLogParameters`.
122
+ * Telemetry parameters for VPC Flow logs
123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html}
124
+ */
125
+ export type VPCFlowLogParameters = {
126
+ /**
127
+ * The fields to include in the flow log record. If you omit this parameter, the flow log is created using the default format.
128
+ */
129
+ LogFormat?: string;
130
+ /**
131
+ * The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record. Default is 600s.
132
+ */
133
+ MaxAggregationInterval?: number;
134
+ /**
135
+ * The type of traffic captured for the flow log. Default is ALL
136
+ */
137
+ TrafficType?: string;
138
+ };
139
+ /**
140
+ * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
142
+ */
143
+ export declare class ObservabilityAdminTelemetryRule extends $Resource<"AWS::ObservabilityAdmin::TelemetryRule", ObservabilityAdminTelemetryRuleProperties, ObservabilityAdminTelemetryRuleAttributes> {
144
+ static readonly Type = "AWS::ObservabilityAdmin::TelemetryRule";
145
+ constructor(logicalId: string, properties: ObservabilityAdminTelemetryRuleProperties, options?: $ResourceOptions);
146
+ }
147
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryRule.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
5
+ */
6
+ export class ObservabilityAdminTelemetryRule extends $Resource {
7
+ static Type = "AWS::ObservabilityAdmin::TelemetryRule";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ObservabilityAdminTelemetryRule.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryRule.js.map
@@ -78,6 +78,7 @@ export type OpenSearchServiceDomainAttributes = {
78
78
  export type AdvancedSecurityOptionsInput = {
79
79
  AnonymousAuthEnabled?: boolean;
80
80
  Enabled?: boolean;
81
+ IAMFederationOptions?: IAMFederationOptions;
81
82
  InternalUserDatabaseEnabled?: boolean;
82
83
  JWTOptions?: JWTOptions;
83
84
  MasterUserOptions?: MasterUserOptions;
@@ -149,6 +150,15 @@ export type EncryptionAtRestOptions = {
149
150
  Enabled?: boolean;
150
151
  KmsKeyId?: string;
151
152
  };
153
+ /**
154
+ * Type definition for `AWS::OpenSearchService::Domain.IAMFederationOptions`.
155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html}
156
+ */
157
+ export type IAMFederationOptions = {
158
+ Enabled?: boolean;
159
+ RolesKey?: string;
160
+ SubjectKey?: string;
161
+ };
152
162
  /**
153
163
  * Type definition for `AWS::OpenSearchService::Domain.IdentityCenterOptions`.
154
164
  * Options for configuring Identity Center
@@ -168,7 +168,7 @@ export type CastColumnTypeOperation = {
168
168
  * @minLength `1`
169
169
  * @maxLength `127`
170
170
  */
171
- ColumnName: string;
171
+ ColumnName?: string;
172
172
  /**
173
173
  * <p>When casting a column from string to datetime type, you can supply a string in a
174
174
  format supported by Amazon QuickSight to denote the source data format.</p>
@@ -271,7 +271,7 @@ export type CreateColumnsOperation = {
271
271
  /**
272
272
  * <p>Calculated columns to create.</p>
273
273
  * @minLength `0`
274
- * @maxLength `128`
274
+ * @maxLength `256`
275
275
  */
276
276
  Columns?: CalculatedColumn[];
277
277
  };
@@ -283,7 +283,7 @@ export type CreateColumnsOperation = {
283
283
  export type CustomSql = {
284
284
  /**
285
285
  * <p>The column schema from the SQL query result set.</p>
286
- * @minLength `1`
286
+ * @minLength `0`
287
287
  * @maxLength `2048`
288
288
  */
289
289
  Columns?: InputColumn[];
@@ -489,7 +489,7 @@ export type FilterOperation = {
489
489
  * @minLength `1`
490
490
  * @maxLength `4096`
491
491
  */
492
- ConditionExpression: string;
492
+ ConditionExpression?: string;
493
493
  };
494
494
  /**
495
495
  * Type definition for `AWS::QuickSight::DataSet.GeoSpatialColumnGroup`.
@@ -866,7 +866,7 @@ export type ProjectOperation = {
866
866
  * @minLength `0`
867
867
  * @maxLength `2000`
868
868
  */
869
- ProjectedColumns: string[];
869
+ ProjectedColumns?: string[];
870
870
  };
871
871
  /**
872
872
  * Type definition for `AWS::QuickSight::DataSet.RefreshConfiguration`.
@@ -916,7 +916,7 @@ export type RelationalTable = {
916
916
  DataSourceArn: string;
917
917
  /**
918
918
  * <p>The column schema of the table.</p>
919
- * @minLength `1`
919
+ * @minLength `0`
920
920
  * @maxLength `2048`
921
921
  */
922
922
  InputColumns?: InputColumn[];
@@ -944,7 +944,7 @@ export type RenameColumnOperation = {
944
944
  * @minLength `1`
945
945
  * @maxLength `127`
946
946
  */
947
- ColumnName: string;
947
+ ColumnName?: string;
948
948
  /**
949
949
  * <p>The new name for the column.</p>
950
950
  * @minLength `1`
@@ -1050,7 +1050,7 @@ export type RowLevelPermissionTagRule = {
1050
1050
  /**
1051
1051
  * <p>The column name that a tag key is assigned to.</p>
1052
1052
  */
1053
- ColumnName: string;
1053
+ ColumnName?: string;
1054
1054
  /**
1055
1055
  * <p>A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.</p>
1056
1056
  * @minLength `1`
@@ -1085,7 +1085,7 @@ export type S3Source = {
1085
1085
  <note>
1086
1086
  <p>For files that aren't JSON, only <code>STRING</code> data types are supported in input columns.</p>
1087
1087
  </note>
1088
- * @minLength `1`
1088
+ * @minLength `0`
1089
1089
  * @maxLength `2048`
1090
1090
  */
1091
1091
  InputColumns?: InputColumn[];
@@ -1241,7 +1241,7 @@ export type UniqueKey = {
1241
1241
  * @minLength `1`
1242
1242
  * @maxLength `1`
1243
1243
  */
1244
- ColumnNames: string[];
1244
+ ColumnNames?: string[];
1245
1245
  };
1246
1246
  /**
1247
1247
  * Type definition for `AWS::QuickSight::DataSet.UntagColumnOperation`.
@@ -465,6 +465,9 @@ export type RDSDBClusterProperties = {
465
465
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
466
466
  */
467
467
  SourceDBClusterIdentifier?: string;
468
+ /**
469
+ * The resource ID of the source DB cluster from which to restore.
470
+ */
468
471
  SourceDbClusterResourceId?: string;
469
472
  /**
470
473
  * The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1``.
@@ -895,9 +895,6 @@ export type RDSDBInstanceAttributes = {
895
895
  ReadReplicaDBInstanceIdentifiers: string[];
896
896
  ResumeFullAutomationModeTime: string;
897
897
  SecondaryAvailabilityZone: string;
898
- /**
899
- * The status of a read replica. If the DB instance isn't a read replica, the value is blank.
900
- */
901
898
  StatusInfos: {
902
899
  /**
903
900
  * Details of the error if there is an error for the instance. If the instance isn't in an error state, this value is blank.
@@ -710,11 +710,6 @@ export type UnifiedStudioSettings = {
710
710
  * @pattern `[\w\.-]+$`
711
711
  */
712
712
  ProjectS3Path?: string;
713
- /**
714
- * The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
715
- * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::[0-9]+:application/[a-zA-Z0-9-_.]+/apl-[a-zA-Z0-9]+$`
716
- */
717
- SingleSignOnApplicationArn?: string;
718
713
  /**
719
714
  * Sets whether you can access the domain in Amazon SageMaker Studio:
720
715
 
@@ -126,12 +126,34 @@ export type BaseScreenshot = {
126
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-code.html}
127
127
  */
128
128
  export type Code = {
129
+ /**
130
+ * List of Lambda layers to attach to the canary
131
+ * @maxLength `1`
132
+ */
133
+ Dependencies?: Dependency[];
129
134
  Handler: string;
130
135
  S3Bucket?: string;
131
136
  S3Key?: string;
132
137
  S3ObjectVersion?: string;
133
138
  Script?: string;
134
139
  };
140
+ /**
141
+ * Type definition for `AWS::Synthetics::Canary.Dependency`.
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-dependency.html}
143
+ */
144
+ export type Dependency = {
145
+ /**
146
+ * ARN of the Lambda layer
147
+ * @minLength `1`
148
+ * @maxLength `140`
149
+ * @pattern `arn:[a-zA-Z0-9-]+:lambda:[a-zA-Z0-9-]+:\d{12}:layer:[a-zA-Z0-9-_]+:[0-9]+`
150
+ */
151
+ Reference: string;
152
+ /**
153
+ * Type of dependency
154
+ */
155
+ Type?: "LambdaLayer";
156
+ };
135
157
  /**
136
158
  * Type definition for `AWS::Synthetics::Canary.ResourceToTag`.
137
159
  * Specifies which resources canary tags should be replicated to.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.397",
3
+ "version": "0.1.399",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },