@awboost/cfn-resource-types 0.1.65 → 0.1.67

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.
@@ -1,41 +1,88 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
4
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
5
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
6
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
5
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
6
8
  */
7
9
  export type ApplicationAutoScalingScalableTargetProperties = {
8
10
  /**
9
- * The maximum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand
11
+ * The maximum value that you plan to scale out to. When a scaling policy is in effect, Application Auto Scaling can scale out (expand) as needed to the maximum capacity limit in response to changing demand.
10
12
  */
11
13
  MaxCapacity: number;
12
14
  /**
13
- * The minimum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand
15
+ * The minimum value that you plan to scale in to. When a scaling policy is in effect, Application Auto Scaling can scale in (contract) as needed to the minimum capacity limit in response to changing demand.
14
16
  */
15
17
  MinCapacity: number;
16
18
  /**
17
- * The identifier of the resource associated with the scalable target
18
- */
19
+ * The identifier of the resource associated with the scalable target. This string consists of the resource type and unique identifier.
20
+ + ECS service - The resource type is ``service`` and the unique identifier is the cluster name and service name. Example: ``service/my-cluster/my-service``.
21
+ + Spot Fleet - The resource type is ``spot-fleet-request`` and the unique identifier is the Spot Fleet request ID. Example: ``spot-fleet-request/sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE``.
22
+ + EMR cluster - The resource type is ``instancegroup`` and the unique identifier is the cluster ID and instance group ID. Example: ``instancegroup/j-2EEZNYKUA1NTV/ig-1791Y4E1L8YI0``.
23
+ + AppStream 2.0 fleet - The resource type is ``fleet`` and the unique identifier is the fleet name. Example: ``fleet/sample-fleet``.
24
+ + DynamoDB table - The resource type is ``table`` and the unique identifier is the table name. Example: ``table/my-table``.
25
+ + DynamoDB global secondary index - The resource type is ``index`` and the unique identifier is the index name. Example: ``table/my-table/index/my-table-index``.
26
+ + Aurora DB cluster - The resource type is ``cluster`` and the unique identifier is the cluster name. Example: ``cluster:my-db-cluster``.
27
+ + SageMaker endpoint variant - The resource type is ``variant`` and the unique identifier is the resource ID. Example: ``endpoint/my-end-point/variant/KMeansClustering``.
28
+ + Custom resources are not supported with a resource type. This parameter must specify the ``OutputValue`` from the CloudFormation template stack used to access the resources. The unique identifier is defined by the service provider. More information is available in our [GitHub repository](https://docs.aws.amazon.com/https://github.com/aws/aws-auto-scaling-custom-resource).
29
+ + Amazon Comprehend document classification endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: ``arn:aws:comprehend:us-west-2:123456789012:document-classifier-endpoint/EXAMPLE``.
30
+ + Amazon Comprehend entity recognizer endpoint - The resource type and unique identifier are specified using the endpoint ARN. Example: ``arn:aws:comprehend:us-west-2:123456789012:entity-recognizer-endpoint/EXAMPLE``.
31
+ + Lambda provisioned concurrency - The resource type is ``function`` and the unique identifier is the function name with a function version or alias name suffix that is not ``$LATEST``. Example: ``function:my-function:prod`` or ``function:my-function:1``.
32
+ + Amazon Keyspaces table - The resource type is ``table`` and the unique identifier is the table name. Example: ``keyspace/mykeyspace/table/mytable``.
33
+ + Amazon MSK cluster - The resource type and unique identifier are specified using the cluster ARN. Example: ``arn:aws:kafka:us-east-1:123456789012:cluster/demo-cluster-1/6357e0b2-0e6a-4b86-a0b4-70df934c2e31-5``.
34
+ + Amazon ElastiCache replication group - The resource type is ``replication-group`` and the unique identifier is the replication group name. Example: ``replication-group/mycluster``.
35
+ + Neptune cluster - The resource type is ``cluster`` and the unique identifier is the cluster name. Example: ``cluster:mycluster``.
36
+ + SageMaker serverless endpoint - The resource type is ``variant`` and the unique identifier is the resource ID. Example: ``endpoint/my-end-point/variant/KMeansClustering``.
37
+ + SageMaker inference component - The resource type is ``inference-component`` and the unique identifier is the resource ID. Example: ``inference-component/my-inference-component``.
38
+ */
19
39
  ResourceId: string;
20
40
  /**
21
- * Specify the Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that allows Application Auto Scaling to modify the scalable target on your behalf.
22
- */
41
+ * Specify the Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that allows Application Auto Scaling to modify the scalable target on your behalf. This can be either an IAM service role that Application Auto Scaling can assume to make calls to other AWS resources on your behalf, or a service-linked role for the specified service. For more information, see [How Application Auto Scaling works with IAM](https://docs.aws.amazon.com/autoscaling/application/userguide/security_iam_service-with-iam.html) in the *Application Auto Scaling User Guide*.
42
+ To automatically create a service-linked role (recommended), specify the full ARN of the service-linked role in your stack template. To find the exact ARN of the service-linked role for your AWS or custom resource, see the [Service-linked roles](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-service-linked-roles.html) topic in the *Application Auto Scaling User Guide*. Look for the ARN in the table at the bottom of the page.
43
+ */
23
44
  RoleARN?: string;
24
45
  /**
25
- * The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property
26
- */
46
+ * The scalable dimension associated with the scalable target. This string consists of the service namespace, resource type, and scaling property.
47
+ + ``ecs:service:DesiredCount`` - The desired task count of an ECS service.
48
+ + ``elasticmapreduce:instancegroup:InstanceCount`` - The instance count of an EMR Instance Group.
49
+ + ``ec2:spot-fleet-request:TargetCapacity`` - The target capacity of a Spot Fleet.
50
+ + ``appstream:fleet:DesiredCapacity`` - The desired capacity of an AppStream 2.0 fleet.
51
+ + ``dynamodb:table:ReadCapacityUnits`` - The provisioned read capacity for a DynamoDB table.
52
+ + ``dynamodb:table:WriteCapacityUnits`` - The provisioned write capacity for a DynamoDB table.
53
+ + ``dynamodb:index:ReadCapacityUnits`` - The provisioned read capacity for a DynamoDB global secondary index.
54
+ + ``dynamodb:index:WriteCapacityUnits`` - The provisioned write capacity for a DynamoDB global secondary index.
55
+ + ``rds:cluster:ReadReplicaCount`` - The count of Aurora Replicas in an Aurora DB cluster. Available for Aurora MySQL-compatible edition and Aurora PostgreSQL-compatible edition.
56
+ + ``sagemaker:variant:DesiredInstanceCount`` - The number of EC2 instances for a SageMaker model endpoint variant.
57
+ + ``custom-resource:ResourceType:Property`` - The scalable dimension for a custom resource provided by your own application or service.
58
+ + ``comprehend:document-classifier-endpoint:DesiredInferenceUnits`` - The number of inference units for an Amazon Comprehend document classification endpoint.
59
+ + ``comprehend:entity-recognizer-endpoint:DesiredInferenceUnits`` - The number of inference units for an Amazon Comprehend entity recognizer endpoint.
60
+ + ``lambda:function:ProvisionedConcurrency`` - The provisioned concurrency for a Lambda function.
61
+ + ``cassandra:table:ReadCapacityUnits`` - The provisioned read capacity for an Amazon Keyspaces table.
62
+ + ``cassandra:table:WriteCapacityUnits`` - The provisioned write capacity for an Amazon Keyspaces table.
63
+ + ``kafka:broker-storage:VolumeSize`` - The provisioned volume size (in GiB) for brokers in an Amazon MSK cluster.
64
+ + ``elasticache:replication-group:NodeGroups`` - The number of node groups for an Amazon ElastiCache replication group.
65
+ + ``elasticache:replication-group:Replicas`` - The number of replicas per node group for an Amazon ElastiCache replication group.
66
+ + ``neptune:cluster:ReadReplicaCount`` - The count of read replicas in an Amazon Neptune DB cluster.
67
+ + ``sagemaker:variant:DesiredProvisionedConcurrency`` - The provisioned concurrency for a SageMaker serverless endpoint.
68
+ + ``sagemaker:inference-component:DesiredCopyCount`` - The number of copies across an endpoint for a SageMaker inference component.
69
+ */
27
70
  ScalableDimension: string;
28
71
  /**
29
72
  * The scheduled actions for the scalable target. Duplicates aren't allowed.
30
73
  */
31
74
  ScheduledActions?: ScheduledAction[];
32
75
  /**
33
- * The namespace of the AWS service that provides the resource, or a custom-resource
76
+ * The namespace of the AWS service that provides the resource, or a ``custom-resource``.
34
77
  */
35
78
  ServiceNamespace: string;
36
79
  /**
37
- * An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to true suspends the specified scaling activities. Setting it to false (default) resumes the specified scaling activities.
38
- */
80
+ * An embedded object that contains attributes and attribute values that are used to suspend and resume automatic scaling. Setting the value of an attribute to ``true`` suspends the specified scaling activities. Setting it to ``false`` (default) resumes the specified scaling activities.
81
+ *Suspension Outcomes*
82
+ + For ``DynamicScalingInSuspended``, while a suspension is in effect, all scale-in activities that are triggered by a scaling policy are suspended.
83
+ + For ``DynamicScalingOutSuspended``, while a suspension is in effect, all scale-out activities that are triggered by a scaling policy are suspended.
84
+ + For ``ScheduledScalingSuspended``, while a suspension is in effect, all scaling activities that involve scheduled actions are suspended.
85
+ */
39
86
  SuspendedState?: SuspendedState;
40
87
  };
41
88
  /**
@@ -43,48 +90,87 @@ export type ApplicationAutoScalingScalableTargetProperties = {
43
90
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html#aws-resource-applicationautoscaling-scalabletarget-return-values}
44
91
  */
45
92
  export type ApplicationAutoScalingScalableTargetAttributes = {
46
- /**
47
- * This value can be returned by using the Ref function. Ref returns the Cloudformation generated ID of the resource in format - ResourceId|ScalableDimension|ServiceNamespace
48
- */
49
93
  Id: string;
50
94
  };
51
95
  /**
52
96
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.ScalableTargetAction`.
53
- * specifies the minimum and maximum capacity
97
+ * ``ScalableTargetAction`` specifies the minimum and maximum capacity for the ``ScalableTargetAction`` property of the [AWS::ApplicationAutoScaling::ScalableTarget ScheduledAction](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html) property type.
54
98
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scalabletargetaction.html}
55
99
  */
56
100
  export type ScalableTargetAction = {
101
+ /**
102
+ * The maximum capacity.
103
+ */
57
104
  MaxCapacity?: number;
105
+ /**
106
+ * The minimum capacity.
107
+ */
58
108
  MinCapacity?: number;
59
109
  };
60
110
  /**
61
111
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.ScheduledAction`.
62
- * specifies a scheduled action for a scalable target
112
+ * ``ScheduledAction`` is a property of the [AWS::ApplicationAutoScaling::ScalableTarget](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html) resource that specifies a scheduled action for a scalable target.
113
+ For more information, see [Scheduled scaling](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-scheduled-scaling.html) in the *Application Auto Scaling User Guide*.
63
114
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-scheduledaction.html}
64
115
  */
65
116
  export type ScheduledAction = {
117
+ /**
118
+ * The date and time that the action is scheduled to end, in UTC.
119
+ */
66
120
  EndTime?: string;
67
121
  /**
68
- * specifies the minimum and maximum capacity
122
+ * The new minimum and maximum capacity. You can set both values or just one. At the scheduled time, if the current capacity is below the minimum capacity, Application Auto Scaling scales out to the minimum capacity. If the current capacity is above the maximum capacity, Application Auto Scaling scales in to the maximum capacity.
69
123
  */
70
124
  ScalableTargetAction?: ScalableTargetAction;
125
+ /**
126
+ * The schedule for this action. The following formats are supported:
127
+ + At expressions - "``at(yyyy-mm-ddThh:mm:ss)``"
128
+ + Rate expressions - "``rate(value unit)``"
129
+ + Cron expressions - "``cron(fields)``"
130
+
131
+ At expressions are useful for one-time schedules. Cron expressions are useful for scheduled actions that run periodically at a specified date and time, and rate expressions are useful for scheduled actions that run at a regular interval.
132
+ At and cron expressions use Universal Coordinated Time (UTC) by default.
133
+ The cron format consists of six fields separated by white spaces: [Minutes] [Hours] [Day_of_Month] [Month] [Day_of_Week] [Year].
134
+ For rate expressions, *value* is a positive integer and *unit* is ``minute`` | ``minutes`` | ``hour`` | ``hours`` | ``day`` | ``days``.
135
+ */
71
136
  Schedule: string;
137
+ /**
138
+ * The name of the scheduled action. This name must be unique among all other scheduled actions on the specified scalable target.
139
+ */
72
140
  ScheduledActionName: string;
141
+ /**
142
+ * The date and time that the action is scheduled to begin, in UTC.
143
+ */
73
144
  StartTime?: string;
145
+ /**
146
+ * The time zone used when referring to the date and time of a scheduled action, when the scheduled action uses an at or cron expression.
147
+ */
74
148
  Timezone?: string;
75
149
  };
76
150
  /**
77
151
  * Type definition for `AWS::ApplicationAutoScaling::ScalableTarget.SuspendedState`.
78
- * specifies whether the scaling activities for a scalable target are in a suspended state
152
+ * ``SuspendedState`` is a property of the [AWS::ApplicationAutoScaling::ScalableTarget](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html) resource that specifies whether the scaling activities for a scalable target are in a suspended state.
153
+ For more information, see [Suspending and resuming scaling](https://docs.aws.amazon.com/autoscaling/application/userguide/application-auto-scaling-suspend-resume-scaling.html) in the *Application Auto Scaling User Guide*.
79
154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationautoscaling-scalabletarget-suspendedstate.html}
80
155
  */
81
156
  export type SuspendedState = {
157
+ /**
158
+ * Whether scale in by a target tracking scaling policy or a step scaling policy is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to remove capacity when a scaling policy is triggered. The default is ``false``.
159
+ */
82
160
  DynamicScalingInSuspended?: boolean;
161
+ /**
162
+ * Whether scale out by a target tracking scaling policy or a step scaling policy is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to add capacity when a scaling policy is triggered. The default is ``false``.
163
+ */
83
164
  DynamicScalingOutSuspended?: boolean;
165
+ /**
166
+ * Whether scheduled scaling is suspended. Set the value to ``true`` if you don't want Application Auto Scaling to add or remove capacity by initiating scheduled actions. The default is ``false``.
167
+ */
84
168
  ScheduledScalingSuspended?: boolean;
85
169
  };
86
170
  /**
87
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
171
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
172
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
173
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
88
174
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
89
175
  */
90
176
  export declare class ApplicationAutoScalingScalableTarget extends $Resource<"AWS::ApplicationAutoScaling::ScalableTarget", ApplicationAutoScalingScalableTargetProperties, ApplicationAutoScalingScalableTargetAttributes> {
@@ -1,6 +1,8 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::ApplicationAutoScaling::ScalableTarget
3
+ * The ``AWS::ApplicationAutoScaling::ScalableTarget`` resource specifies a resource that Application Auto Scaling can scale, such as an AWS::DynamoDB::Table or AWS::ECS::Service resource.
4
+ For more information, see [Getting started](https://docs.aws.amazon.com/autoscaling/application/userguide/getting-started.html) in the *Application Auto Scaling User Guide*.
5
+ If the resource that you want Application Auto Scaling to scale is not yet created in your account, add a dependency on the resource when registering it as a scalable target using the [DependsOn](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-dependson.html) attribute.
4
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationautoscaling-scalabletarget.html}
5
7
  */
6
8
  export class ApplicationAutoScalingScalableTarget extends $Resource {
@@ -64,6 +64,10 @@ export type AgentlessDialerConfig = {
64
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaigns-campaign-answermachinedetectionconfig.html}
65
65
  */
66
66
  export type AnswerMachineDetectionConfig = {
67
+ /**
68
+ * Enables detection of prompts (e.g., beep after after a voicemail greeting)
69
+ */
70
+ AwaitAnswerMachinePrompt?: boolean;
67
71
  /**
68
72
  * Flag to decided whether outbound calls should have answering machine detection enabled or not
69
73
  */
@@ -35,40 +35,49 @@ export type DMSDataProviderProperties = {
35
35
  * The property identifies the exact type of settings for the data provider.
36
36
  */
37
37
  Settings?: {
38
- PostgreSqlSettings?: {
38
+ /**
39
+ * MicrosoftSqlServerSettings property identifier.
40
+ */
41
+ MicrosoftSqlServerSettings?: {
39
42
  CertificateArn?: string;
40
- DatabaseName?: string;
41
- Port?: number;
42
- ServerName?: string;
43
- SslMode?: DmsSslModeValue;
43
+ DatabaseName: string;
44
+ Port: number;
45
+ ServerName: string;
46
+ SslMode: DmsSslModeValue;
44
47
  };
45
- } | {
48
+ /**
49
+ * MySqlSettings property identifier.
50
+ */
46
51
  MySqlSettings?: {
47
52
  CertificateArn?: string;
48
- Port?: number;
49
- ServerName?: string;
50
- SslMode?: DmsSslModeValue;
53
+ Port: number;
54
+ ServerName: string;
55
+ SslMode: DmsSslModeValue;
51
56
  };
52
- } | {
57
+ /**
58
+ * OracleSettings property identifier.
59
+ */
53
60
  OracleSettings?: {
54
61
  AsmServer?: string;
55
62
  CertificateArn?: string;
56
- DatabaseName?: string;
57
- Port?: number;
63
+ DatabaseName: string;
64
+ Port: number;
58
65
  SecretsManagerOracleAsmAccessRoleArn?: string;
59
66
  SecretsManagerOracleAsmSecretId?: string;
60
67
  SecretsManagerSecurityDbEncryptionAccessRoleArn?: string;
61
68
  SecretsManagerSecurityDbEncryptionSecretId?: string;
62
- ServerName?: string;
63
- SslMode?: DmsSslModeValue;
69
+ ServerName: string;
70
+ SslMode: DmsSslModeValue;
64
71
  };
65
- } | {
66
- MicrosoftSqlServerSettings?: {
72
+ /**
73
+ * PostgreSqlSettings property identifier.
74
+ */
75
+ PostgreSqlSettings?: {
67
76
  CertificateArn?: string;
68
- DatabaseName?: string;
69
- Port?: number;
70
- ServerName?: string;
71
- SslMode?: DmsSslModeValue;
77
+ DatabaseName: string;
78
+ Port: number;
79
+ ServerName: string;
80
+ SslMode: DmsSslModeValue;
72
81
  };
73
82
  };
74
83
  /**
@@ -98,7 +107,7 @@ export type DMSDataProviderAttributes = {
98
107
  * Type definition for `AWS::DMS::DataProvider.DmsSslModeValue`.
99
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-dmssslmodevalue.html}
100
109
  */
101
- export type DmsSslModeValue = "none" | "require" | "verify_ca" | "verify_full";
110
+ export type DmsSslModeValue = "none" | "require" | "verify-ca" | "verify-full";
102
111
  /**
103
112
  * Type definition for `AWS::DMS::DataProvider.Tag`.
104
113
  * A key-value pair to associate with a resource.
@@ -11,11 +11,6 @@ export type EC2CustomerGatewayProperties = {
11
11
  Default: 65000
12
12
  */
13
13
  BgpAsn?: number;
14
- /**
15
- * @min `2147483648`
16
- * @max `4294967294`
17
- */
18
- BgpAsnExtended?: number;
19
14
  /**
20
15
  * @pattern `^arn:(aws[a-zA-Z-]*)?:acm:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\d{1}:\d{12}:certificate\/[a-zA-Z0-9-_]+$`
21
16
  */
@@ -18,6 +18,9 @@ export type GroundStationConfigProperties = {
18
18
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-config.html#aws-resource-groundstation-config-return-values}
19
19
  */
20
20
  export type GroundStationConfigAttributes = {
21
+ /**
22
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
23
+ */
21
24
  Arn: string;
22
25
  Id: string;
23
26
  Type: string;
@@ -137,11 +140,17 @@ export type Polarization = "LEFT_HAND" | "RIGHT_HAND" | "NONE";
137
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-s3recordingconfig.html}
138
141
  */
139
142
  export type S3RecordingConfig = {
143
+ /**
144
+ * @pattern `^arn:aws[A-Za-z0-9-]{0,64}:s3:::[A-Za-z0-9-]{1,64}$`
145
+ */
140
146
  BucketArn?: string;
141
147
  /**
142
148
  * @pattern `^([a-zA-Z0-9_\-=/]|\{satellite_id\}|\{config\-name}|\{s3\-config-id}|\{year\}|\{month\}|\{day\}){1,900}$`
143
149
  */
144
150
  Prefix?: string;
151
+ /**
152
+ * @pattern `^arn:[^:\n]+:iam::[^:\n]+:role\/.+$`
153
+ */
145
154
  RoleArn?: string;
146
155
  };
147
156
  /**
@@ -179,6 +188,9 @@ export type TrackingConfig = {
179
188
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-config-uplinkechoconfig.html}
180
189
  */
181
190
  export type UplinkEchoConfig = {
191
+ /**
192
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
193
+ */
182
194
  AntennaUplinkConfigArn?: string;
183
195
  Enabled?: boolean;
184
196
  };
@@ -25,6 +25,9 @@ export type GroundStationDataflowEndpointGroupProperties = {
25
25
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroup.html#aws-resource-groundstation-dataflowendpointgroup-return-values}
26
26
  */
27
27
  export type GroundStationDataflowEndpointGroupAttributes = {
28
+ /**
29
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
30
+ */
28
31
  Arn: string;
29
32
  Id: string;
30
33
  };
@@ -153,6 +156,9 @@ export type RangedSocketAddress = {
153
156
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroup-securitydetails.html}
154
157
  */
155
158
  export type SecurityDetails = {
159
+ /**
160
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
161
+ */
156
162
  RoleArn?: string;
157
163
  SecurityGroupIds?: string[];
158
164
  SubnetIds?: string[];
@@ -36,6 +36,9 @@ export type GroundStationMissionProfileProperties = {
36
36
  */
37
37
  StreamsKmsRole?: string;
38
38
  Tags?: Tag[];
39
+ /**
40
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
41
+ */
39
42
  TrackingConfigArn: string;
40
43
  };
41
44
  /**
@@ -43,6 +46,9 @@ export type GroundStationMissionProfileProperties = {
43
46
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-missionprofile.html#aws-resource-groundstation-missionprofile-return-values}
44
47
  */
45
48
  export type GroundStationMissionProfileAttributes = {
49
+ /**
50
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
51
+ */
46
52
  Arn: string;
47
53
  Id: string;
48
54
  Region: string;
@@ -60,7 +66,13 @@ export type DataflowEdge = {
60
66
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-missionprofile-streamskmskey.html}
61
67
  */
62
68
  export type StreamsKmsKey = {
69
+ /**
70
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
71
+ */
63
72
  KmsAliasArn?: string;
73
+ /**
74
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
75
+ */
64
76
  KmsKeyArn?: string;
65
77
  };
66
78
  /**
@@ -5,29 +5,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html}
6
6
  */
7
7
  export type LambdaAliasProperties = {
8
- /**
9
- * A description of the alias.
10
- */
11
8
  Description?: string;
12
- /**
13
- * The name of the Lambda function.
14
- */
15
9
  FunctionName: string;
16
- /**
17
- * The function version that the alias invokes.
18
- */
19
10
  FunctionVersion: string;
20
- /**
21
- * The name of the alias.
22
- */
23
11
  Name: string;
24
- /**
25
- * Specifies a provisioned concurrency configuration for a function's alias.
26
- */
27
12
  ProvisionedConcurrencyConfig?: ProvisionedConcurrencyConfiguration;
28
- /**
29
- * The routing configuration of the alias.
30
- */
31
13
  RoutingConfig?: AliasRoutingConfiguration;
32
14
  };
33
15
  /**
@@ -35,46 +17,28 @@ export type LambdaAliasProperties = {
35
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#aws-resource-lambda-alias-return-values}
36
18
  */
37
19
  export type LambdaAliasAttributes = {
38
- /**
39
- * Lambda Alias ARN generated by the service.
40
- */
41
- AliasArn: string;
20
+ Id: string;
42
21
  };
43
22
  /**
44
23
  * Type definition for `AWS::Lambda::Alias.AliasRoutingConfiguration`.
45
- * The traffic-shifting configuration of a Lambda function alias.
46
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-aliasroutingconfiguration.html}
47
25
  */
48
26
  export type AliasRoutingConfiguration = {
49
- /**
50
- * The second version, and the percentage of traffic that's routed to it.
51
- */
52
- AdditionalVersionWeights?: VersionWeight[];
27
+ AdditionalVersionWeights: VersionWeight[];
53
28
  };
54
29
  /**
55
30
  * Type definition for `AWS::Lambda::Alias.ProvisionedConcurrencyConfiguration`.
56
- * A provisioned concurrency configuration for a function's alias.
57
31
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html}
58
32
  */
59
33
  export type ProvisionedConcurrencyConfiguration = {
60
- /**
61
- * The amount of provisioned concurrency to allocate for the alias.
62
- */
63
34
  ProvisionedConcurrentExecutions: number;
64
35
  };
65
36
  /**
66
37
  * Type definition for `AWS::Lambda::Alias.VersionWeight`.
67
- * The traffic-shifting configuration of a Lambda function alias.
68
38
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-versionweight.html}
69
39
  */
70
40
  export type VersionWeight = {
71
- /**
72
- * The qualifier of the second version.
73
- */
74
41
  FunctionVersion: string;
75
- /**
76
- * The percentage of traffic that the alias routes to the second version.
77
- */
78
42
  FunctionWeight: number;
79
43
  };
80
44
  /**
@@ -139,12 +139,14 @@ export type AudioCodecSettings = {
139
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-audiodescription.html}
140
140
  */
141
141
  export type AudioDescription = {
142
+ AudioDashRoles?: string[];
142
143
  AudioNormalizationSettings?: AudioNormalizationSettings;
143
144
  AudioSelectorName?: string;
144
145
  AudioType?: string;
145
146
  AudioTypeControl?: string;
146
147
  AudioWatermarkingSettings?: AudioWatermarkSettings;
147
148
  CodecSettings?: AudioCodecSettings;
149
+ DvbDashAccessibility?: string;
148
150
  LanguageCode?: string;
149
151
  LanguageCodeControl?: string;
150
152
  Name?: string;
@@ -322,8 +324,10 @@ export type BurnInDestinationSettings = {
322
324
  */
323
325
  export type CaptionDescription = {
324
326
  Accessibility?: string;
327
+ CaptionDashRoles?: string[];
325
328
  CaptionSelectorName?: string;
326
329
  DestinationSettings?: CaptionDestinationSettings;
330
+ DvbDashAccessibility?: string;
327
331
  LanguageCode?: string;
328
332
  LanguageDescription?: string;
329
333
  Name?: string;
@@ -395,6 +399,25 @@ export type CaptionSelectorSettings = {
395
399
  export type CdiInputSpecification = {
396
400
  Resolution?: string;
397
401
  };
402
+ /**
403
+ * Type definition for `AWS::MediaLive::Channel.CmafIngestGroupSettings`.
404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestgroupsettings.html}
405
+ */
406
+ export type CmafIngestGroupSettings = {
407
+ Destination?: OutputLocationRef;
408
+ NielsenId3Behavior?: string;
409
+ Scte35Type?: string;
410
+ SegmentLength?: number;
411
+ SegmentLengthUnits?: string;
412
+ SendDelayMs?: number;
413
+ };
414
+ /**
415
+ * Type definition for `AWS::MediaLive::Channel.CmafIngestOutputSettings`.
416
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-cmafingestoutputsettings.html}
417
+ */
418
+ export type CmafIngestOutputSettings = {
419
+ NameModifier?: string;
420
+ };
398
421
  /**
399
422
  * Type definition for `AWS::MediaLive::Channel.ColorCorrection`.
400
423
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-colorcorrection.html}
@@ -791,6 +814,8 @@ export type H265Settings = {
791
814
  LookAheadRateControl?: string;
792
815
  MaxBitrate?: number;
793
816
  MinIInterval?: number;
817
+ MvOverPictureBoundaries?: string;
818
+ MvTemporalPredictor?: string;
794
819
  ParDenominator?: number;
795
820
  ParNumerator?: number;
796
821
  Profile?: string;
@@ -800,8 +825,12 @@ export type H265Settings = {
800
825
  SceneChangeDetect?: string;
801
826
  Slices?: number;
802
827
  Tier?: string;
828
+ TileHeight?: number;
829
+ TilePadding?: string;
830
+ TileWidth?: number;
803
831
  TimecodeBurninSettings?: TimecodeBurninSettings;
804
832
  TimecodeInsertion?: string;
833
+ TreeblockSize?: string;
805
834
  };
806
835
  /**
807
836
  * Type definition for `AWS::MediaLive::Channel.Hdr10Settings`.
@@ -1339,6 +1368,7 @@ export type OutputGroup = {
1339
1368
  */
1340
1369
  export type OutputGroupSettings = {
1341
1370
  ArchiveGroupSettings?: ArchiveGroupSettings;
1371
+ CmafIngestGroupSettings?: CmafIngestGroupSettings;
1342
1372
  FrameCaptureGroupSettings?: FrameCaptureGroupSettings;
1343
1373
  HlsGroupSettings?: HlsGroupSettings;
1344
1374
  MediaPackageGroupSettings?: MediaPackageGroupSettings;
@@ -1368,6 +1398,7 @@ export type OutputLockingSettings = {
1368
1398
  */
1369
1399
  export type OutputSettings = {
1370
1400
  ArchiveOutputSettings?: ArchiveOutputSettings;
1401
+ CmafIngestOutputSettings?: CmafIngestOutputSettings;
1371
1402
  FrameCaptureOutputSettings?: FrameCaptureOutputSettings;
1372
1403
  HlsOutputSettings?: HlsOutputSettings;
1373
1404
  MediaPackageOutputSettings?: MediaPackageOutputSettings;
@@ -3751,7 +3751,7 @@ export type LineChartConfiguration = {
3751
3751
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
3752
3752
  /**
3753
3753
  * @minLength `0`
3754
- * @maxLength `10`
3754
+ * @maxLength `2000`
3755
3755
  */
3756
3756
  Series?: SeriesItem[];
3757
3757
  SmallMultiplesOptions?: SmallMultiplesOptions;
@@ -4771,7 +4771,7 @@ export type PivotTableCellConditionalFormatting = {
4771
4771
  export type PivotTableConditionalFormatting = {
4772
4772
  /**
4773
4773
  * @minLength `0`
4774
- * @maxLength `100`
4774
+ * @maxLength `500`
4775
4775
  */
4776
4776
  ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
4777
4777
  };
@@ -6239,7 +6239,7 @@ export type TableCellStyle = {
6239
6239
  export type TableConditionalFormatting = {
6240
6240
  /**
6241
6241
  * @minLength `0`
6242
- * @maxLength `100`
6242
+ * @maxLength `500`
6243
6243
  */
6244
6244
  ConditionalFormattingOptions?: TableConditionalFormattingOption[];
6245
6245
  };
@@ -7087,6 +7087,13 @@ export type WaterfallChartAggregatedFieldWells = {
7087
7087
  */
7088
7088
  Values?: MeasureField[];
7089
7089
  };
7090
+ /**
7091
+ * Type definition for `AWS::QuickSight::Analysis.WaterfallChartColorConfiguration`.
7092
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartcolorconfiguration.html}
7093
+ */
7094
+ export type WaterfallChartColorConfiguration = {
7095
+ GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
7096
+ };
7090
7097
  /**
7091
7098
  * Type definition for `AWS::QuickSight::Analysis.WaterfallChartConfiguration`.
7092
7099
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartconfiguration.html}
@@ -7094,6 +7101,7 @@ export type WaterfallChartAggregatedFieldWells = {
7094
7101
  export type WaterfallChartConfiguration = {
7095
7102
  CategoryAxisDisplayOptions?: AxisDisplayOptions;
7096
7103
  CategoryAxisLabelOptions?: ChartAxisLabelOptions;
7104
+ ColorConfiguration?: WaterfallChartColorConfiguration;
7097
7105
  DataLabels?: DataLabelOptions;
7098
7106
  FieldWells?: WaterfallChartFieldWells;
7099
7107
  Legend?: LegendOptions;
@@ -7110,6 +7118,24 @@ export type WaterfallChartConfiguration = {
7110
7118
  export type WaterfallChartFieldWells = {
7111
7119
  WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
7112
7120
  };
7121
+ /**
7122
+ * Type definition for `AWS::QuickSight::Analysis.WaterfallChartGroupColorConfiguration`.
7123
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartgroupcolorconfiguration.html}
7124
+ */
7125
+ export type WaterfallChartGroupColorConfiguration = {
7126
+ /**
7127
+ * @pattern `^#[A-F0-9]{6}$`
7128
+ */
7129
+ NegativeBarColor?: string;
7130
+ /**
7131
+ * @pattern `^#[A-F0-9]{6}$`
7132
+ */
7133
+ PositiveBarColor?: string;
7134
+ /**
7135
+ * @pattern `^#[A-F0-9]{6}$`
7136
+ */
7137
+ TotalBarColor?: string;
7138
+ };
7113
7139
  /**
7114
7140
  * Type definition for `AWS::QuickSight::Analysis.WaterfallChartOptions`.
7115
7141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartoptions.html}
@@ -4007,7 +4007,7 @@ export type LineChartConfiguration = {
4007
4007
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
4008
4008
  /**
4009
4009
  * @minLength `0`
4010
- * @maxLength `10`
4010
+ * @maxLength `2000`
4011
4011
  */
4012
4012
  Series?: SeriesItem[];
4013
4013
  SmallMultiplesOptions?: SmallMultiplesOptions;
@@ -5038,7 +5038,7 @@ export type PivotTableCellConditionalFormatting = {
5038
5038
  export type PivotTableConditionalFormatting = {
5039
5039
  /**
5040
5040
  * @minLength `0`
5041
- * @maxLength `100`
5041
+ * @maxLength `500`
5042
5042
  */
5043
5043
  ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
5044
5044
  };
@@ -6522,7 +6522,7 @@ export type TableCellStyle = {
6522
6522
  export type TableConditionalFormatting = {
6523
6523
  /**
6524
6524
  * @minLength `0`
6525
- * @maxLength `100`
6525
+ * @maxLength `500`
6526
6526
  */
6527
6527
  ConditionalFormattingOptions?: TableConditionalFormattingOption[];
6528
6528
  };
@@ -7384,6 +7384,13 @@ export type WaterfallChartAggregatedFieldWells = {
7384
7384
  */
7385
7385
  Values?: MeasureField[];
7386
7386
  };
7387
+ /**
7388
+ * Type definition for `AWS::QuickSight::Dashboard.WaterfallChartColorConfiguration`.
7389
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartcolorconfiguration.html}
7390
+ */
7391
+ export type WaterfallChartColorConfiguration = {
7392
+ GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
7393
+ };
7387
7394
  /**
7388
7395
  * Type definition for `AWS::QuickSight::Dashboard.WaterfallChartConfiguration`.
7389
7396
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartconfiguration.html}
@@ -7391,6 +7398,7 @@ export type WaterfallChartAggregatedFieldWells = {
7391
7398
  export type WaterfallChartConfiguration = {
7392
7399
  CategoryAxisDisplayOptions?: AxisDisplayOptions;
7393
7400
  CategoryAxisLabelOptions?: ChartAxisLabelOptions;
7401
+ ColorConfiguration?: WaterfallChartColorConfiguration;
7394
7402
  DataLabels?: DataLabelOptions;
7395
7403
  FieldWells?: WaterfallChartFieldWells;
7396
7404
  Legend?: LegendOptions;
@@ -7407,6 +7415,24 @@ export type WaterfallChartConfiguration = {
7407
7415
  export type WaterfallChartFieldWells = {
7408
7416
  WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
7409
7417
  };
7418
+ /**
7419
+ * Type definition for `AWS::QuickSight::Dashboard.WaterfallChartGroupColorConfiguration`.
7420
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartgroupcolorconfiguration.html}
7421
+ */
7422
+ export type WaterfallChartGroupColorConfiguration = {
7423
+ /**
7424
+ * @pattern `^#[A-F0-9]{6}$`
7425
+ */
7426
+ NegativeBarColor?: string;
7427
+ /**
7428
+ * @pattern `^#[A-F0-9]{6}$`
7429
+ */
7430
+ PositiveBarColor?: string;
7431
+ /**
7432
+ * @pattern `^#[A-F0-9]{6}$`
7433
+ */
7434
+ TotalBarColor?: string;
7435
+ };
7410
7436
  /**
7411
7437
  * Type definition for `AWS::QuickSight::Dashboard.WaterfallChartOptions`.
7412
7438
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-waterfallchartoptions.html}
@@ -3794,7 +3794,7 @@ export type LineChartConfiguration = {
3794
3794
  SecondaryYAxisLabelOptions?: ChartAxisLabelOptions;
3795
3795
  /**
3796
3796
  * @minLength `0`
3797
- * @maxLength `10`
3797
+ * @maxLength `2000`
3798
3798
  */
3799
3799
  Series?: SeriesItem[];
3800
3800
  SmallMultiplesOptions?: SmallMultiplesOptions;
@@ -4783,7 +4783,7 @@ export type PivotTableCellConditionalFormatting = {
4783
4783
  export type PivotTableConditionalFormatting = {
4784
4784
  /**
4785
4785
  * @minLength `0`
4786
- * @maxLength `100`
4786
+ * @maxLength `500`
4787
4787
  */
4788
4788
  ConditionalFormattingOptions?: PivotTableConditionalFormattingOption[];
4789
4789
  };
@@ -6235,7 +6235,7 @@ export type TableCellStyle = {
6235
6235
  export type TableConditionalFormatting = {
6236
6236
  /**
6237
6237
  * @minLength `0`
6238
- * @maxLength `100`
6238
+ * @maxLength `500`
6239
6239
  */
6240
6240
  ConditionalFormattingOptions?: TableConditionalFormattingOption[];
6241
6241
  };
@@ -7239,6 +7239,13 @@ export type WaterfallChartAggregatedFieldWells = {
7239
7239
  */
7240
7240
  Values?: MeasureField[];
7241
7241
  };
7242
+ /**
7243
+ * Type definition for `AWS::QuickSight::Template.WaterfallChartColorConfiguration`.
7244
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartcolorconfiguration.html}
7245
+ */
7246
+ export type WaterfallChartColorConfiguration = {
7247
+ GroupColorConfiguration?: WaterfallChartGroupColorConfiguration;
7248
+ };
7242
7249
  /**
7243
7250
  * Type definition for `AWS::QuickSight::Template.WaterfallChartConfiguration`.
7244
7251
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartconfiguration.html}
@@ -7246,6 +7253,7 @@ export type WaterfallChartAggregatedFieldWells = {
7246
7253
  export type WaterfallChartConfiguration = {
7247
7254
  CategoryAxisDisplayOptions?: AxisDisplayOptions;
7248
7255
  CategoryAxisLabelOptions?: ChartAxisLabelOptions;
7256
+ ColorConfiguration?: WaterfallChartColorConfiguration;
7249
7257
  DataLabels?: DataLabelOptions;
7250
7258
  FieldWells?: WaterfallChartFieldWells;
7251
7259
  Legend?: LegendOptions;
@@ -7262,6 +7270,24 @@ export type WaterfallChartConfiguration = {
7262
7270
  export type WaterfallChartFieldWells = {
7263
7271
  WaterfallChartAggregatedFieldWells?: WaterfallChartAggregatedFieldWells;
7264
7272
  };
7273
+ /**
7274
+ * Type definition for `AWS::QuickSight::Template.WaterfallChartGroupColorConfiguration`.
7275
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartgroupcolorconfiguration.html}
7276
+ */
7277
+ export type WaterfallChartGroupColorConfiguration = {
7278
+ /**
7279
+ * @pattern `^#[A-F0-9]{6}$`
7280
+ */
7281
+ NegativeBarColor?: string;
7282
+ /**
7283
+ * @pattern `^#[A-F0-9]{6}$`
7284
+ */
7285
+ PositiveBarColor?: string;
7286
+ /**
7287
+ * @pattern `^#[A-F0-9]{6}$`
7288
+ */
7289
+ TotalBarColor?: string;
7290
+ };
7265
7291
  /**
7266
7292
  * Type definition for `AWS::QuickSight::Template.WaterfallChartOptions`.
7267
7293
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-waterfallchartoptions.html}
@@ -90,6 +90,7 @@ export type RDSDBInstanceProperties = {
90
90
  * A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
91
91
  */
92
92
  AutoMinorVersionUpgrade?: boolean;
93
+ AutomaticBackupReplicationKmsKeyId?: string;
93
94
  /**
94
95
  * The destination region for the backup replication of the DB instance. For more info, see [Replicating automated backups to another Region](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) in the *Amazon RDS User Guide*.
95
96
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.65",
3
+ "version": "0.1.67",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },