@awboost/cfn-resource-types 0.1.430 → 0.1.431

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,22 +1,22 @@
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::EC2::NetworkInterfaceAttachment`.
5
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
4
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
6
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
7
6
  */
8
7
  export type EC2NetworkInterfaceAttachmentProperties = {
9
8
  /**
10
- * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
9
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
11
10
  */
12
11
  DeleteOnTermination?: boolean;
13
12
  /**
14
- * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
13
+ * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
15
14
  */
16
15
  DeviceIndex: string;
17
16
  /**
18
- * Configures ENA Express for the network interface that this action attaches to the instance.
17
+ * The number of ENA queues to be created with the instance.
19
18
  */
19
+ EnaQueueCount?: number;
20
20
  EnaSrdSpecification?: EnaSrdSpecification;
21
21
  /**
22
22
  * The ID of the instance to which you will attach the ENI.
@@ -32,29 +32,23 @@ export type EC2NetworkInterfaceAttachmentProperties = {
32
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
33
33
  */
34
34
  export type EC2NetworkInterfaceAttachmentAttributes = {
35
+ /**
36
+ * The ID of the network interface attachment.
37
+ */
35
38
  AttachmentId: string;
36
39
  };
37
40
  /**
38
41
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
39
- * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
40
- To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
41
42
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
42
43
  */
43
44
  export type EnaSrdSpecification = {
44
- /**
45
- * Indicates whether ENA Express is enabled for the network interface.
46
- */
47
45
  EnaSrdEnabled?: boolean;
48
- /**
49
- * Configures ENA Express for UDP network traffic.
50
- */
51
46
  EnaSrdUdpSpecification?: {
52
47
  EnaSrdUdpEnabled?: boolean;
53
48
  };
54
49
  };
55
50
  /**
56
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
57
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
51
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
58
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
59
53
  */
60
54
  export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
@@ -1,7 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
4
- * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
3
+ * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
5
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
6
5
  */
7
6
  export class EC2NetworkInterfaceAttachment extends $Resource {
@@ -39,6 +39,7 @@ export type LambdaPermissionProperties = {
39
39
  * The type of authentication that your function URL uses. Set to ``AWS_IAM`` if you want to restrict access to authenticated users only. Set to ``NONE`` if you want to bypass IAM authentication to create a public endpoint. For more information, see [Security and auth model for Lambda function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-auth.html).
40
40
  */
41
41
  FunctionUrlAuthType?: "AWS_IAM" | "NONE";
42
+ InvokedViaFunctionUrl?: boolean;
42
43
  /**
43
44
  * The AWS-service, AWS-account, IAM user, or IAM role that invokes the function. If you specify a service, use ``SourceArn`` or ``SourceAccount`` to limit who can invoke the function through that service.
44
45
  * @minLength `1`
@@ -94,6 +94,10 @@ export type NetworkManagerConnectPeerAttributes = {
94
94
  * The Connect peer Regions where edges are located.
95
95
  */
96
96
  EdgeLocation: string;
97
+ /**
98
+ * Errors from the last modification of the connect peer.
99
+ */
100
+ LastModificationErrors: string[];
97
101
  /**
98
102
  * State of the connect peer.
99
103
  */
@@ -10,6 +10,13 @@ export type OmicsWorkflowProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -120,6 +127,14 @@ export type OmicsWorkflowAttributes = {
120
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-accelerators.html}
121
128
  */
122
129
  export type Accelerators = "GPU";
130
+ /**
131
+ * Type definition for `AWS::Omics::Workflow.ContainerRegistryMap`.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-containerregistrymap.html}
133
+ */
134
+ export type ContainerRegistryMap = {
135
+ ImageMappings?: ImageMapping[];
136
+ RegistryMappings?: RegistryMapping[];
137
+ };
123
138
  /**
124
139
  * Type definition for `AWS::Omics::Workflow.DefinitionRepository`.
125
140
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-definitionrepository.html}
@@ -142,6 +157,54 @@ export type DefinitionRepository = {
142
157
  fullRepositoryId?: string;
143
158
  sourceReference?: SourceReference;
144
159
  };
160
+ /**
161
+ * Type definition for `AWS::Omics::Workflow.ImageMapping`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-imagemapping.html}
163
+ */
164
+ export type ImageMapping = {
165
+ /**
166
+ * @minLength `1`
167
+ * @maxLength `750`
168
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
169
+ */
170
+ DestinationImage?: string;
171
+ /**
172
+ * @minLength `1`
173
+ * @maxLength `750`
174
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
175
+ */
176
+ SourceImage?: string;
177
+ };
178
+ /**
179
+ * Type definition for `AWS::Omics::Workflow.RegistryMapping`.
180
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-registrymapping.html}
181
+ */
182
+ export type RegistryMapping = {
183
+ /**
184
+ * @minLength `12`
185
+ * @maxLength `12`
186
+ * @pattern `^[0-9]+$`
187
+ */
188
+ EcrAccountId?: string;
189
+ /**
190
+ * @minLength `1`
191
+ * @maxLength `256`
192
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
193
+ */
194
+ EcrRepositoryPrefix?: string;
195
+ /**
196
+ * @minLength `1`
197
+ * @maxLength `750`
198
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
199
+ */
200
+ UpstreamRegistryUrl?: string;
201
+ /**
202
+ * @minLength `2`
203
+ * @maxLength `30`
204
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
205
+ */
206
+ UpstreamRepositoryPrefix?: string;
207
+ };
145
208
  /**
146
209
  * Type definition for `AWS::Omics::Workflow.SourceReference`.
147
210
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflow-sourcereference.html}
@@ -10,6 +10,13 @@ export type OmicsWorkflowVersionProperties = {
10
10
  * @maxLength `64`
11
11
  */
12
12
  Accelerators?: Accelerators;
13
+ ContainerRegistryMap?: ContainerRegistryMap;
14
+ /**
15
+ * @minLength `1`
16
+ * @maxLength `750`
17
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
18
+ */
19
+ ContainerRegistryMapUri?: string;
13
20
  DefinitionRepository?: DefinitionRepository;
14
21
  /**
15
22
  * @minLength `1`
@@ -123,6 +130,14 @@ export type OmicsWorkflowVersionAttributes = {
123
130
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
124
131
  */
125
132
  export type Accelerators = "GPU";
133
+ /**
134
+ * Type definition for `AWS::Omics::WorkflowVersion.ContainerRegistryMap`.
135
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-containerregistrymap.html}
136
+ */
137
+ export type ContainerRegistryMap = {
138
+ ImageMappings?: ImageMapping[];
139
+ RegistryMappings?: RegistryMapping[];
140
+ };
126
141
  /**
127
142
  * Type definition for `AWS::Omics::WorkflowVersion.DefinitionRepository`.
128
143
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
@@ -145,6 +160,54 @@ export type DefinitionRepository = {
145
160
  fullRepositoryId?: string;
146
161
  sourceReference?: SourceReference;
147
162
  };
163
+ /**
164
+ * Type definition for `AWS::Omics::WorkflowVersion.ImageMapping`.
165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-imagemapping.html}
166
+ */
167
+ export type ImageMapping = {
168
+ /**
169
+ * @minLength `1`
170
+ * @maxLength `750`
171
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
172
+ */
173
+ DestinationImage?: string;
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `750`
177
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
178
+ */
179
+ SourceImage?: string;
180
+ };
181
+ /**
182
+ * Type definition for `AWS::Omics::WorkflowVersion.RegistryMapping`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-registrymapping.html}
184
+ */
185
+ export type RegistryMapping = {
186
+ /**
187
+ * @minLength `12`
188
+ * @maxLength `12`
189
+ * @pattern `^[0-9]+$`
190
+ */
191
+ EcrAccountId?: string;
192
+ /**
193
+ * @minLength `1`
194
+ * @maxLength `256`
195
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
196
+ */
197
+ EcrRepositoryPrefix?: string;
198
+ /**
199
+ * @minLength `1`
200
+ * @maxLength `750`
201
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
202
+ */
203
+ UpstreamRegistryUrl?: string;
204
+ /**
205
+ * @minLength `2`
206
+ * @maxLength `30`
207
+ * @pattern `^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$`
208
+ */
209
+ UpstreamRepositoryPrefix?: string;
210
+ };
148
211
  /**
149
212
  * Type definition for `AWS::Omics::WorkflowVersion.SourceReference`.
150
213
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
@@ -1556,6 +1556,8 @@ export type DashboardPublishOptions = {
1556
1556
  */
1557
1557
  DataPointTooltipOption?: DataPointTooltipOption;
1558
1558
  DataQAEnabledOption?: DataQAEnabledOption;
1559
+ DataStoriesSharingOption?: DataStoriesSharingOption;
1560
+ ExecutiveSummaryOption?: ExecutiveSummaryOption;
1559
1561
  /**
1560
1562
  * <p>Export to .csv option.</p>
1561
1563
  */
@@ -1935,6 +1937,13 @@ export type DataSetReference = {
1935
1937
  */
1936
1938
  DataSetPlaceholder: string;
1937
1939
  };
1940
+ /**
1941
+ * Type definition for `AWS::QuickSight::Dashboard.DataStoriesSharingOption`.
1942
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datastoriessharingoption.html}
1943
+ */
1944
+ export type DataStoriesSharingOption = {
1945
+ AvailabilityStatus?: DashboardBehavior;
1946
+ };
1938
1947
  /**
1939
1948
  * Type definition for `AWS::QuickSight::Dashboard.DateAggregationFunction`.
1940
1949
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dateaggregationfunction.html}
@@ -2401,6 +2410,13 @@ export type ExcludePeriodConfiguration = {
2401
2410
  Granularity: TimeGranularity;
2402
2411
  Status?: WidgetStatus;
2403
2412
  };
2413
+ /**
2414
+ * Type definition for `AWS::QuickSight::Dashboard.ExecutiveSummaryOption`.
2415
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-executivesummaryoption.html}
2416
+ */
2417
+ export type ExecutiveSummaryOption = {
2418
+ AvailabilityStatus?: DashboardBehavior;
2419
+ };
2404
2420
  /**
2405
2421
  * Type definition for `AWS::QuickSight::Dashboard.ExplicitHierarchy`.
2406
2422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-explicithierarchy.html}
@@ -277,6 +277,7 @@ export type RDSDBClusterProperties = {
277
277
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
278
278
  */
279
279
  ManageMasterUserPassword?: boolean;
280
+ MasterUserAuthenticationType?: string;
280
281
  /**
281
282
  * The master password for the DB instance.
282
283
  If you specify the ``SourceDBClusterIdentifier``, ``SnapshotIdentifier``, or ``GlobalClusterIdentifier`` property, don't specify this property. The value is inherited from the source DB cluster, the snapshot, or the primary DB cluster for the global database cluster, respectively.
@@ -510,6 +510,7 @@ export type RDSDBInstanceProperties = {
510
510
  + Can't manage the master user password with AWS Secrets Manager if ``MasterUserPassword`` is specified.
511
511
  */
512
512
  ManageMasterUserPassword?: boolean;
513
+ MasterUserAuthenticationType?: string;
513
514
  /**
514
515
  * The password for the master user. The password can include any printable ASCII character except "/", """, or "@".
515
516
  *Amazon Aurora*
@@ -5,23 +5,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
6
6
  */
7
7
  export type ServiceCatalogPortfolioProductAssociationProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
9
- PortfolioId: string;
10
- ProductId: string;
12
+ /**
13
+ * The portfolio identifier.
14
+ */
15
+ PortfolioId?: string;
16
+ /**
17
+ * The product identifier.
18
+ */
19
+ ProductId?: string;
20
+ /**
21
+ * The identifier of the source portfolio. The source portfolio must be a portfolio imported from a different account than the one creating the association. This account must have previously shared this portfolio with the account creating the association.
22
+ */
11
23
  SourcePortfolioId?: string;
12
24
  };
13
- /**
14
- * Attribute type definition for `AWS::ServiceCatalog::PortfolioProductAssociation`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html#aws-resource-servicecatalog-portfolioproductassociation-return-values}
16
- */
17
- export type ServiceCatalogPortfolioProductAssociationAttributes = {
18
- Id: string;
19
- };
20
25
  /**
21
26
  * Resource Type definition for AWS::ServiceCatalog::PortfolioProductAssociation
22
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-portfolioproductassociation.html}
23
28
  */
24
- export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, ServiceCatalogPortfolioProductAssociationAttributes> {
29
+ export declare class ServiceCatalogPortfolioProductAssociation extends $Resource<"AWS::ServiceCatalog::PortfolioProductAssociation", ServiceCatalogPortfolioProductAssociationProperties, Record<string, never>> {
25
30
  static readonly Type = "AWS::ServiceCatalog::PortfolioProductAssociation";
26
31
  constructor(logicalId: string, properties: ServiceCatalogPortfolioProductAssociationProperties, options?: $ResourceOptions);
27
32
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.430",
3
+ "version": "0.1.431",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },