@awboost/cfn-resource-types 0.1.505 → 0.1.507

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.
@@ -2,33 +2,39 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
4
  * Resource type definition for `AWS::EC2::Volume`.
5
- * Specifies an Amazon Elastic Block Store (Amazon EBS) volume.
6
- When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time.
7
- Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
8
- Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
5
+ * Specifies an Amazon Elastic Block Store (Amazon EBS) volume. You can create an empty volume, a volume from a snapshot, or a volume copy from an existing source volume.
6
+ + When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time. Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
9
7
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
10
8
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
11
9
 
12
10
  For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
13
- *DeletionPolicy attribute*
11
+ + Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
12
+
13
+ *DeletionPolicy attribute*
14
14
  To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
15
15
  If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
16
16
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
17
17
  */
18
18
  export type EC2VolumeProperties = {
19
19
  /**
20
- * Indicates whether the volume is auto-enabled for I/O operations. By default, Amazon EBS disables I/O to the volume from attached EC2 instances when it determines that a volume's data is potentially inconsistent. If the consistency of the volume is not a concern, and you prefer that the volume be made available immediately if it's impaired, you can configure the volume to automatically enable I/O.
20
+ * Indicates whether the volume is auto-enabled for I/O operations. By default, EBS disables I/O to the volume from attached EC2 instances when it determines that a volume's data is potentially inconsistent. If the consistency of the volume is not a concern, and you prefer that the volume be made available immediately if it's impaired, you can configure the volume to automatically enable I/O.
21
21
  */
22
22
  AutoEnableIO?: boolean;
23
23
  /**
24
24
  * The ID of the Availability Zone in which to create the volume. For example, ``us-east-1a``.
25
25
  Either ``AvailabilityZone`` or ``AvailabilityZoneId`` must be specified, but not both.
26
+ If you are creating a volume copy, omit this parameter. The volume copy is created in the same Availability Zone as the source volume.
26
27
  */
27
28
  AvailabilityZone?: string;
29
+ /**
30
+ * The ID of the Availability Zone in which to create the volume. For example, ``use1-az1``.
31
+ Either ``AvailabilityZone`` or ``AvailabilityZoneId`` must be specified, but not both.
32
+ If you are creating a volume copy, omit this parameter. The volume copy is created in the same Availability Zone as the source volume.
33
+ */
28
34
  AvailabilityZoneId?: string;
29
35
  /**
30
- * Indicates whether the volume should be encrypted. The effect of setting the encryption state to ``true`` depends on the volume origin (new or from a snapshot), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see [Encryption by default](https://docs.aws.amazon.com/ebs/latest/userguide/work-with-ebs-encr.html#encryption-by-default) in the *Amazon EBS User Guide*.
31
- Encrypted Amazon EBS volumes must be attached to instances that support Amazon EBS encryption. For more information, see [Supported instance types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-encryption-requirements.html#ebs-encryption_supported_instances).
36
+ * Indicates whether the volume should be encrypted. The effect of setting the encryption state to ``true`` depends on the volume origin (new, from a snapshot, or from an existing volume), starting encryption state, ownership, and whether encryption by default is enabled. For more information, see [Encryption by default](https://docs.aws.amazon.com/ebs/latest/userguide/work-with-ebs-encr.html#encryption-by-default) in the *Amazon EBS User Guide*.
37
+ If you are creating a volume copy, omit this parameter. The volume is automatically encrypted with the same KMS key as the source volume. You can't copy unencrypted volumes.
32
38
  */
33
39
  Encrypted?: boolean;
34
40
  /**
@@ -49,6 +55,8 @@ export type EC2VolumeProperties = {
49
55
  + Key alias. Specify the alias for the key, prefixed with ``alias/``. For example, for a key with the alias ``my_cmk``, use ``alias/my_cmk``. Or to specify the aws-managed-key, use ``alias/aws/ebs``.
50
56
  + Key ARN. For example, arn:aws:kms:us-east-1:012345678910:key/1234abcd-12ab-34cd-56ef-1234567890ab.
51
57
  + Alias ARN. For example, arn:aws:kms:us-east-1:012345678910:alias/ExampleAlias.
58
+
59
+ If you are creating a volume copy, omit this parameter. The volume is automatically encrypted with the same KMS key as the source volume. You can't copy unencrypted volumes.
52
60
  */
53
61
  KmsKeyId?: string;
54
62
  /**
@@ -57,12 +65,16 @@ export type EC2VolumeProperties = {
57
65
  */
58
66
  MultiAttachEnabled?: boolean;
59
67
  /**
60
- * The Amazon Resource Name (ARN) of the Outpost.
61
- */
68
+ * The Amazon Resource Name (ARN) of the Outpost on which to create the volume.
69
+ If you intend to use a volume with an instance running on an outpost, then you must create the volume on the same outpost as the instance. You can't use a volume created in an AWS Region with an instance on an AWS outpost, or the other way around.
70
+ */
62
71
  OutpostArn?: string;
63
72
  /**
64
- * The size of the volume, in GiBs. You must specify either a snapshot ID or a volume size. If you specify a snapshot, the default is the snapshot size, and you can specify a volume size that is equal to or larger than the snapshot size.
65
- Valid sizes:
73
+ * The size of the volume, in GiBs.
74
+ + Required for new empty volumes.
75
+ + Optional for volumes created from snapshots and volume copies. In this case, the size defaults to the size of the snapshot or source volume. You can optionally specify a size that is equal to or larger than the size of the source snapshot or volume.
76
+
77
+ Supported volume sizes:
66
78
  + gp2: ``1 - 16,384`` GiB
67
79
  + gp3: ``1 - 65,536`` GiB
68
80
  + io1: ``4 - 16,384`` GiB
@@ -72,9 +84,12 @@ export type EC2VolumeProperties = {
72
84
  */
73
85
  Size?: number;
74
86
  /**
75
- * The snapshot from which to create the volume. You must specify either a snapshot ID or a volume size.
87
+ * The snapshot from which to create the volume. Only specify to create a volume from a snapshot. To create a new empty volume, omit this parameter and specify a value for ``Size`` instead. To create a volume copy, omit this parameter and specify ``SourceVolumeId`` instead.
76
88
  */
77
89
  SnapshotId?: string;
90
+ /**
91
+ * The ID of the source EBS volume to copy. When specified, the volume is created as an exact copy of the specified volume. Only specify to create a volume copy. To create a new empty volume or to create a volume from a snapshot, omit this parameter,
92
+ */
78
93
  SourceVolumeId?: string;
79
94
  /**
80
95
  * The tags to apply to the volume during creation.
@@ -105,7 +120,8 @@ export type EC2VolumeProperties = {
105
120
  + Cold HDD: ``sc1``
106
121
  + Magnetic: ``standard``
107
122
 
108
- For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html).
123
+ Throughput Optimized HDD (``st1``) and Cold HDD (``sc1``) volumes can't be used as boot volumes.
124
+ For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/ebs/latest/userguide/ebs-volume-types.html) in the *Amazon EBS User Guide*.
109
125
  Default: ``gp2``
110
126
  */
111
127
  VolumeType?: string;
@@ -134,15 +150,15 @@ export type Tag = {
134
150
  };
135
151
  /**
136
152
  * Resource type definition for `AWS::EC2::Volume`.
137
- * Specifies an Amazon Elastic Block Store (Amazon EBS) volume.
138
- When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time.
139
- Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
140
- Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
153
+ * Specifies an Amazon Elastic Block Store (Amazon EBS) volume. You can create an empty volume, a volume from a snapshot, or a volume copy from an existing source volume.
154
+ + When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time. Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
141
155
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
142
156
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
143
157
 
144
158
  For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
145
- *DeletionPolicy attribute*
159
+ + Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
160
+
161
+ *DeletionPolicy attribute*
146
162
  To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
147
163
  If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
148
164
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
@@ -1,15 +1,15 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
3
  * Resource type definition for `AWS::EC2::Volume`.
4
- * Specifies an Amazon Elastic Block Store (Amazon EBS) volume.
5
- When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time.
6
- Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
7
- Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
4
+ * Specifies an Amazon Elastic Block Store (Amazon EBS) volume. You can create an empty volume, a volume from a snapshot, or a volume copy from an existing source volume.
5
+ + When you use CFNlong to update an Amazon EBS volume that modifies ``Iops``, ``Size``, or ``VolumeType``, there is a cooldown period before another operation can occur. This can cause your stack to report being in ``UPDATE_IN_PROGRESS`` or ``UPDATE_ROLLBACK_IN_PROGRESS`` for long periods of time. Some common scenarios when you might encounter a cooldown period for Amazon EBS include:
8
6
  + You successfully update an Amazon EBS volume and the update succeeds. When you attempt another update within the cooldown window, that update will be subject to a cooldown period.
9
7
  + You successfully update an Amazon EBS volume and the update succeeds but another change in your ``update-stack`` call fails. The rollback will be subject to a cooldown period.
10
8
 
11
9
  For more information, see [Requirements for EBS volume modifications](https://docs.aws.amazon.com/ebs/latest/userguide/modify-volume-requirements.html).
12
- *DeletionPolicy attribute*
10
+ + Amazon EBS does not support sizing down an Amazon EBS volume. CFNlong does not attempt to modify an Amazon EBS volume to a smaller size on rollback.
11
+
12
+ *DeletionPolicy attribute*
13
13
  To control how CFNlong handles the volume when the stack is deleted, set a deletion policy for your volume. You can choose to retain the volume, to delete the volume, or to create a snapshot of the volume. For more information, see [DeletionPolicy attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-deletionpolicy.html).
14
14
  If you set a deletion policy that creates a snapshot, all tags on the volume are included in the snapshot.
15
15
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-volume.html}
@@ -72,7 +72,7 @@ export type ECRRepositoryCreationTemplateAttributes = {
72
72
  * Enumerable Strings representing the repository creation scenarios that the template will apply towards.
73
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-appliedforitem.html}
74
74
  */
75
- export type AppliedForItem = "REPLICATION" | "PULL_THROUGH_CACHE";
75
+ export type AppliedForItem = "REPLICATION" | "PULL_THROUGH_CACHE" | "CREATE_ON_PUSH";
76
76
  /**
77
77
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.EncryptionConfiguration`.
78
78
  * The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
@@ -53,6 +53,7 @@ export type BaselineEbsBandwidthMbpsRequest = {
53
53
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-instancelaunchtemplate.html}
54
54
  */
55
55
  export type InstanceLaunchTemplate = {
56
+ CapacityOptionType?: "ON_DEMAND" | "SPOT";
56
57
  Ec2InstanceProfileArn: string;
57
58
  InstanceRequirements?: InstanceRequirementsRequest;
58
59
  Monitoring?: ManagedInstancesMonitoringOptions;
@@ -9,6 +9,10 @@ export type EMRStepProperties = {
9
9
  * This specifies what action to take when the cluster step fails. Possible values are CANCEL_AND_WAIT and CONTINUE.
10
10
  */
11
11
  ActionOnFailure: string;
12
+ /**
13
+ * The KMS key ARN to encrypt the logs published to the given Amazon S3 destination. When omitted, EMR falls back to cluster-level logging behavior.
14
+ */
15
+ EncryptionKeyArn?: string;
12
16
  /**
13
17
  * The HadoopJarStepConfig property type specifies a job flow step consisting of a JAR file whose main function will be executed. The main function submits a job for the cluster to execute as a step on the master node, and then waits for the job to finish or fail before executing subsequent steps.
14
18
  */
@@ -17,6 +21,10 @@ export type EMRStepProperties = {
17
21
  * A string that uniquely identifies the cluster (job flow).
18
22
  */
19
23
  JobFlowId: string;
24
+ /**
25
+ * The Amazon S3 destination URI for log publishing. When omitted, EMR falls back to cluster-level logging behavior.
26
+ */
27
+ LogUri?: string;
20
28
  /**
21
29
  * The name of the cluster step.
22
30
  */
@@ -13,6 +13,7 @@ export type LogsLogGroupProperties = {
13
13
  * Creates a data protection policy and assigns it to the log group. A data protection policy can help safeguard sensitive data that's ingested by the log group by auditing and masking the sensitive log data. When a user who does not have permission to view masked data views a log event that includes masked data, the sensitive data is replaced by asterisks.
14
14
  */
15
15
  DataProtectionPolicy?: Record<string, any>;
16
+ DeletionProtectionEnabled?: boolean;
16
17
  /**
17
18
  * Creates or updates a *field index policy* for the specified log group. Only log groups in the Standard log class support field index policies. For more information about log classes, see [Log classes](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch_Logs_Log_Classes.html).
18
19
  You can use field index policies to create *field indexes* on fields found in log events in the log group. Creating field indexes lowers the costs for CWL Insights queries that reference those field indexes, because these queries attempt to skip the processing of log events that are known to not match the indexed field. Good fields to index are fields that you often need to query for and fields that have high cardinality of values Common examples of indexes include request ID, session ID, userID, and instance IDs. For more information, see [Create field indexes to improve query performance and reduce costs](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatchLogs-Field-Indexing.html).
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbpeeringconnection.html}
6
6
  */
7
7
  export type ODBOdbPeeringConnectionProperties = {
8
+ /**
9
+ * The additional CIDR blocks for the ODB peering connection.
10
+ */
11
+ AdditionalPeerNetworkCidrs?: string[];
8
12
  /**
9
13
  * The name of the ODB peering connection.
10
14
  * @minLength `1`
@@ -52,6 +56,10 @@ export type ODBOdbPeeringConnectionAttributes = {
52
56
  * The Amazon Resource Name (ARN) of the peer network.
53
57
  */
54
58
  PeerNetworkArn: string;
59
+ /**
60
+ * The CIDR blocks for the ODB peering connection.
61
+ */
62
+ PeerNetworkCidrs: string[];
55
63
  };
56
64
  /**
57
65
  * Type definition for `AWS::ODB::OdbPeeringConnection.Tag`.
@@ -1696,7 +1696,7 @@ export type DashboardVersionDefinition = {
1696
1696
  Options?: AssetOptions;
1697
1697
  /**
1698
1698
  * @minLength `0`
1699
- * @maxLength `200`
1699
+ * @maxLength `400`
1700
1700
  */
1701
1701
  ParameterDeclarations?: ParameterDeclaration[];
1702
1702
  /**
@@ -3106,6 +3106,11 @@ export type FreeFormLayoutConfiguration = {
3106
3106
  */
3107
3107
  export type FreeFormLayoutElement = {
3108
3108
  BackgroundStyle?: FreeFormLayoutElementBackgroundStyle;
3109
+ /**
3110
+ * @minLength `0`
3111
+ * @maxLength `50`
3112
+ */
3113
+ BorderRadius?: string;
3109
3114
  BorderStyle?: FreeFormLayoutElementBorderStyle;
3110
3115
  /**
3111
3116
  * @minLength `1`
@@ -3119,6 +3124,11 @@ export type FreeFormLayoutElement = {
3119
3124
  */
3120
3125
  Height: string;
3121
3126
  LoadingAnimation?: LoadingAnimation;
3127
+ /**
3128
+ * @minLength `0`
3129
+ * @maxLength `200`
3130
+ */
3131
+ Padding?: string;
3122
3132
  /**
3123
3133
  * @minLength `0`
3124
3134
  * @maxLength `10000`
@@ -3160,6 +3170,12 @@ export type FreeFormLayoutElementBorderStyle = {
3160
3170
  */
3161
3171
  Color?: string;
3162
3172
  Visibility?: Visibility;
3173
+ /**
3174
+ * String to encapsulate the most generic way Width can be formatted with whatever units (px, em etc)
3175
+ * @minLength `0`
3176
+ * @maxLength `50`
3177
+ */
3178
+ Width?: string;
3163
3179
  };
3164
3180
  /**
3165
3181
  * Type definition for `AWS::QuickSight::Dashboard.FreeFormLayoutScreenCanvasSizeOptions`.
@@ -3920,6 +3936,13 @@ export type GridLayoutConfiguration = {
3920
3936
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelement.html}
3921
3937
  */
3922
3938
  export type GridLayoutElement = {
3939
+ BackgroundStyle?: GridLayoutElementBackgroundStyle;
3940
+ /**
3941
+ * @minLength `0`
3942
+ * @maxLength `50`
3943
+ */
3944
+ BorderRadius?: string;
3945
+ BorderStyle?: GridLayoutElementBorderStyle;
3923
3946
  /**
3924
3947
  * @min `0`
3925
3948
  * @max `35`
@@ -3937,6 +3960,12 @@ export type GridLayoutElement = {
3937
3960
  */
3938
3961
  ElementId: string;
3939
3962
  ElementType: LayoutElementType;
3963
+ LoadingAnimation?: LoadingAnimation;
3964
+ /**
3965
+ * @minLength `0`
3966
+ * @maxLength `200`
3967
+ */
3968
+ Padding?: string;
3940
3969
  /**
3941
3970
  * @min `0`
3942
3971
  * @max `9009`
@@ -3947,6 +3976,35 @@ export type GridLayoutElement = {
3947
3976
  * @max `21`
3948
3977
  */
3949
3978
  RowSpan: number;
3979
+ SelectedBorderStyle?: GridLayoutElementBorderStyle;
3980
+ };
3981
+ /**
3982
+ * Type definition for `AWS::QuickSight::Dashboard.GridLayoutElementBackgroundStyle`.
3983
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelementbackgroundstyle.html}
3984
+ */
3985
+ export type GridLayoutElementBackgroundStyle = {
3986
+ /**
3987
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
3988
+ */
3989
+ Color?: string;
3990
+ Visibility?: Visibility;
3991
+ };
3992
+ /**
3993
+ * Type definition for `AWS::QuickSight::Dashboard.GridLayoutElementBorderStyle`.
3994
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gridlayoutelementborderstyle.html}
3995
+ */
3996
+ export type GridLayoutElementBorderStyle = {
3997
+ /**
3998
+ * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
3999
+ */
4000
+ Color?: string;
4001
+ Visibility?: Visibility;
4002
+ /**
4003
+ * String to encapsulate the most generic way Width can be formatted with whatever units (px, em etc)
4004
+ * @minLength `0`
4005
+ * @maxLength `50`
4006
+ */
4007
+ Width?: string;
3950
4008
  };
3951
4009
  /**
3952
4010
  * Type definition for `AWS::QuickSight::Dashboard.GridLayoutScreenCanvasSizeOptions`.
@@ -27,7 +27,7 @@ export type SecurityHubConnectorV2Properties = {
27
27
  */
28
28
  Name: string;
29
29
  /**
30
- * The provider configuration of the connector
30
+ * The third-party provider configuration for the connector
31
31
  */
32
32
  Provider: Provider;
33
33
  /**
@@ -75,54 +75,53 @@ export type SecurityHubConnectorV2Attributes = {
75
75
  Message: string;
76
76
  };
77
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}
78
+ * Type definition for `AWS::SecurityHub::ConnectorV2.JiraCloudProviderConfiguration`.
79
+ * The initial configuration settings required to establish an integration between Security Hub and Jira Cloud
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-jiracloudproviderconfiguration.html}
81
81
  */
82
- export type AuthStatus = "ACTIVE" | "FAILED";
82
+ export type JiraCloudProviderConfiguration = {
83
+ /**
84
+ * The project key for a Jira Cloud instance
85
+ * @minLength `2`
86
+ * @maxLength `10`
87
+ */
88
+ ProjectKey: string;
89
+ };
83
90
  /**
84
91
  * Type definition for `AWS::SecurityHub::ConnectorV2.Provider`.
85
- * The provider configuration of the connector
92
+ * The third-party provider configuration for the connector
86
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-provider.html}
87
94
  */
88
95
  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
- };
96
+ /**
97
+ * The initial configuration settings required to establish an integration between Security Hub and Jira Cloud
98
+ */
99
+ JiraCloud: JiraCloudProviderConfiguration;
107
100
  } | {
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
- };
101
+ /**
102
+ * The initial configuration settings required to establish an integration between Security Hub and ServiceNow ITSM
103
+ */
104
+ ServiceNow: ServiceNowProviderConfiguration;
105
+ };
106
+ /**
107
+ * Type definition for `AWS::SecurityHub::ConnectorV2.ServiceNowProviderConfiguration`.
108
+ * The initial configuration settings required to establish an integration between Security Hub and ServiceNow ITSM
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-securityhub-connectorv2-servicenowproviderconfiguration.html}
110
+ */
111
+ export type ServiceNowProviderConfiguration = {
112
+ /**
113
+ * The instance name of ServiceNow ITSM
114
+ * @minLength `1`
115
+ * @maxLength `128`
116
+ */
117
+ InstanceName: string;
118
+ /**
119
+ * The Amazon Resource Name (ARN) of the AWS Secrets Manager secret that contains the ServiceNow credentials
120
+ * @minLength `20`
121
+ * @maxLength `2048`
122
+ * @pattern `.*\S.*`
123
+ */
124
+ SecretArn: string;
126
125
  };
127
126
  /**
128
127
  * Type definition for `AWS::SecurityHub::ConnectorV2.Tags`.
@@ -36,6 +36,7 @@ export type WorkSpacesWebUserSettingsProperties = {
36
36
  Tags?: Tag[];
37
37
  ToolbarConfiguration?: ToolbarConfiguration;
38
38
  UploadAllowed: EnabledType;
39
+ WebAuthnAllowed?: EnabledType;
39
40
  };
40
41
  /**
41
42
  * Attribute type definition for `AWS::WorkSpacesWeb::UserSettings`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.505",
3
+ "version": "0.1.507",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },