@awboost/cfn-resource-types 0.1.394 → 0.1.395

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.
@@ -327,6 +327,7 @@ export type ServiceManagedEc2FleetConfiguration = {
327
327
  * @pattern `^sp-[0-9a-f]{32}$`
328
328
  */
329
329
  StorageProfileId?: string;
330
+ VpcConfiguration?: VpcConfiguration;
330
331
  };
331
332
  /**
332
333
  * Type definition for `AWS::Deadline::Fleet.ServiceManagedEc2InstanceCapabilities`.
@@ -412,6 +413,13 @@ export type VCpuCountRange = {
412
413
  */
413
414
  Min: number;
414
415
  };
416
+ /**
417
+ * Type definition for `AWS::Deadline::Fleet.VpcConfiguration`.
418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-fleet-vpcconfiguration.html}
419
+ */
420
+ export type VpcConfiguration = {
421
+ ResourceConfigurationArns?: string[];
422
+ };
415
423
  /**
416
424
  * Definition of AWS::Deadline::Fleet Resource Type
417
425
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-fleet.html}
@@ -22,6 +22,11 @@ export type DeadlineMonitorProperties = {
22
22
  * @pattern `^[a-z0-9-]{1,100}$`
23
23
  */
24
24
  Subdomain: string;
25
+ /**
26
+ * An array of key-value pairs to apply to this resource.
27
+ * @maxLength `50`
28
+ */
29
+ Tags?: Tag[];
25
30
  };
26
31
  /**
27
32
  * Attribute type definition for `AWS::Deadline::Monitor`.
@@ -39,6 +44,25 @@ export type DeadlineMonitorAttributes = {
39
44
  MonitorId: string;
40
45
  Url: string;
41
46
  };
47
+ /**
48
+ * Type definition for `AWS::Deadline::Monitor.Tag`.
49
+ * A key-value pair to associate with a resource.
50
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-deadline-monitor-tag.html}
51
+ */
52
+ export type Tag = {
53
+ /**
54
+ * The key name of the tag. You can specify a value that is 1 to 127 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 -.
55
+ * @minLength `1`
56
+ * @maxLength `127`
57
+ */
58
+ Key: string;
59
+ /**
60
+ * The value for the tag. You can specify a value that is 1 to 255 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 -.
61
+ * @minLength `1`
62
+ * @maxLength `255`
63
+ */
64
+ Value: string;
65
+ };
42
66
  /**
43
67
  * Definition of AWS::Deadline::Monitor Resource Type
44
68
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-deadline-monitor.html}
@@ -282,19 +282,6 @@ export type Ebs = {
282
282
  */
283
283
  VolumeType?: string;
284
284
  };
285
- /**
286
- * Type definition for `AWS::EC2::LaunchTemplate.ElasticGpuSpecification`.
287
- * Amazon Elastic Graphics reached end of life on January 8, 2024.
288
- Specifies a specification for an Elastic GPU for an Amazon EC2 launch template.
289
- ``ElasticGpuSpecification`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
290
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-elasticgpuspecification.html}
291
- */
292
- export type ElasticGpuSpecification = {
293
- /**
294
- * The type of Elastic Graphics accelerator.
295
- */
296
- Type?: string;
297
- };
298
285
  /**
299
286
  * Type definition for `AWS::EC2::LaunchTemplate.EnaSrdSpecification`.
300
287
  * 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.
@@ -652,17 +639,6 @@ export type LaunchTemplateData = {
652
639
  * Indicates whether the instance is optimized for Amazon EBS I/O. This optimization provides dedicated throughput to Amazon EBS and an optimized configuration stack to provide optimal Amazon EBS I/O performance. This optimization isn't available with all instance types. Additional usage charges apply when using an EBS-optimized instance.
653
640
  */
654
641
  EbsOptimized?: boolean;
655
- /**
656
- * Deprecated.
657
- Amazon Elastic Graphics reached end of life on January 8, 2024.
658
- */
659
- ElasticGpuSpecifications?: ElasticGpuSpecification[];
660
- /**
661
- * Amazon Elastic Inference is no longer available.
662
- An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
663
- You cannot specify accelerators from different generations in the same request.
664
- */
665
- ElasticInferenceAccelerators?: LaunchTemplateElasticInferenceAccelerator[];
666
642
  /**
667
643
  * Indicates whether the instance is enabled for AWS Nitro Enclaves. For more information, see [What is Nitro Enclaves?](https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html) in the *Nitro Enclaves User Guide*.
668
644
  You can't enable AWS Nitro Enclaves and hibernation on the same instance.
@@ -782,24 +758,6 @@ export type LaunchTemplateData = {
782
758
  */
783
759
  UserData?: string;
784
760
  };
785
- /**
786
- * Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateElasticInferenceAccelerator`.
787
- * Amazon Elastic Inference is no longer available.
788
- Specifies an elastic inference accelerator.
789
- ``LaunchTemplateElasticInferenceAccelerator`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
790
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplateelasticinferenceaccelerator.html}
791
- */
792
- export type LaunchTemplateElasticInferenceAccelerator = {
793
- /**
794
- * The number of elastic inference accelerators to attach to the instance.
795
- Default: 1
796
- */
797
- Count?: number;
798
- /**
799
- * The type of elastic inference accelerator. The possible values are eia1.medium, eia1.large, and eia1.xlarge.
800
- */
801
- Type?: string;
802
- };
803
761
  /**
804
762
  * Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
805
763
  * Specifies the tags to apply to the launch template during creation.
@@ -969,6 +927,7 @@ export type NetworkInterface = {
969
927
  If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
970
928
  */
971
929
  DeviceIndex?: number;
930
+ EnaQueueCount?: number;
972
931
  /**
973
932
  * The ENA Express configuration for the network interface.
974
933
  */
@@ -22,6 +22,7 @@ export type ECRRepositoryProperties = {
22
22
  */
23
23
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION";
24
24
  /**
25
+ * The image tag mutability exclusion filters associated with the repository. These filters specify which image tags can override the repository's default image tag mutability setting.
25
26
  * @minLength `1`
26
27
  * @maxLength `5`
27
28
  */
@@ -99,6 +100,7 @@ export type ImageScanningConfiguration = {
99
100
  };
100
101
  /**
101
102
  * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilter`.
103
+ * Overrides the default image tag mutability setting of the repository for image tags that match the specified filters.
102
104
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
103
105
  */
104
106
  export type ImageTagMutabilityExclusionFilter = {
@@ -18,6 +18,10 @@ export type EKSClusterProperties = {
18
18
  * Todo: add description
19
19
  */
20
20
  ComputeConfig?: ComputeConfig;
21
+ /**
22
+ * Set this value to true to enable deletion protection for the cluster.
23
+ */
24
+ DeletionProtection?: boolean;
21
25
  EncryptionConfig?: EncryptionConfig[];
22
26
  /**
23
27
  * Force cluster version update
@@ -751,10 +751,6 @@ export type RDSDBInstanceProperties = {
751
751
  * The ID of the region that contains the source DB instance for the read replica.
752
752
  */
753
753
  SourceRegion?: string;
754
- /**
755
- * The status of a read replica. If the DB instance isn't a read replica, the value is blank.
756
- */
757
- StatusInfos?: DBInstanceStatusInfo[];
758
754
  /**
759
755
  * A value that indicates whether the DB instance is encrypted. By default, it isn't encrypted.
760
756
  If you specify the ``KmsKeyId`` property, then you must enable encryption.
@@ -899,6 +895,27 @@ export type RDSDBInstanceAttributes = {
899
895
  ReadReplicaDBInstanceIdentifiers: string[];
900
896
  ResumeFullAutomationModeTime: string;
901
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
+ StatusInfos: {
902
+ /**
903
+ * 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.
904
+ */
905
+ Message: string;
906
+ /**
907
+ * Indicates whether the instance is operating normally (TRUE) or is in an error state (FALSE).
908
+ */
909
+ Normal: boolean;
910
+ /**
911
+ * The status of the DB instance. For a StatusType of read replica, the values can be replicating, replication stop point set, replication stop point reached, error, stopped, or terminated.
912
+ */
913
+ Status: string;
914
+ /**
915
+ * This value is currently "read replication."
916
+ */
917
+ StatusType: string;
918
+ }[];
902
919
  };
903
920
  /**
904
921
  * Type definition for `AWS::RDS::DBInstance.DBInstanceRole`.
@@ -81,7 +81,7 @@ export type AuthFormat = {
81
81
  /**
82
82
  * The type of authentication the proxy uses for connections from clients.
83
83
  */
84
- ClientPasswordAuthType?: "MYSQL_NATIVE_PASSWORD" | "POSTGRES_SCRAM_SHA_256" | "POSTGRES_MD5" | "SQL_SERVER_AUTHENTICATION";
84
+ ClientPasswordAuthType?: "MYSQL_NATIVE_PASSWORD" | "MYSQL_CACHING_SHA2_PASSWORD" | "POSTGRES_SCRAM_SHA_256" | "POSTGRES_MD5" | "SQL_SERVER_AUTHENTICATION";
85
85
  /**
86
86
  * A user-specified description about the authentication used by a proxy to log in as a specific database user.
87
87
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.394",
3
+ "version": "0.1.395",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },