@awboost/cfn-resource-types 0.1.374 → 0.1.376

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.
@@ -0,0 +1,112 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::Billing::BillingView`.
5
+ * A billing view is a container of cost & usage metadata.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html}
7
+ */
8
+ export type BillingBillingViewProperties = {
9
+ DataFilterExpression?: {
10
+ Dimensions?: {
11
+ Key?: DimensionKey;
12
+ /**
13
+ * @minLength `1`
14
+ * @maxLength `200`
15
+ */
16
+ Values?: string[];
17
+ };
18
+ Tags?: {
19
+ /**
20
+ * @maxLength `1024`
21
+ * @pattern `[\S\s]*`
22
+ */
23
+ Key?: string;
24
+ /**
25
+ * @minLength `1`
26
+ * @maxLength `200`
27
+ */
28
+ Values?: string[];
29
+ };
30
+ };
31
+ /**
32
+ * @maxLength `1024`
33
+ */
34
+ Description?: string;
35
+ /**
36
+ * @minLength `1`
37
+ * @maxLength `128`
38
+ * @pattern `[a-zA-Z0-9_\+=\.\-@]+`
39
+ */
40
+ Name: string;
41
+ /**
42
+ * An array of strings that define the billing view's source.
43
+ */
44
+ SourceViews: string[];
45
+ /**
46
+ * An array of key-value pairs associated to the billing view being created.
47
+ * @maxLength `200`
48
+ */
49
+ Tags?: Tag[];
50
+ };
51
+ /**
52
+ * Attribute type definition for `AWS::Billing::BillingView`.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html#aws-resource-billing-billingview-return-values}
54
+ */
55
+ export type BillingBillingViewAttributes = {
56
+ /**
57
+ * @pattern `arn:aws[a-z-]*:(billing)::[0-9]{12}:billingview/[a-zA-Z0-9_+=.@-]{1,75}`
58
+ */
59
+ Arn: string;
60
+ BillingViewType: BillingViewType;
61
+ /**
62
+ * The time when the billing view was created.
63
+ */
64
+ CreatedAt: number;
65
+ /**
66
+ * @pattern `[0-9]{12}`
67
+ */
68
+ OwnerAccountId: string;
69
+ /**
70
+ * The time when the billing view was last updated.
71
+ */
72
+ UpdatedAt: number;
73
+ };
74
+ /**
75
+ * Type definition for `AWS::Billing::BillingView.BillingViewType`.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-billingviewtype.html}
77
+ */
78
+ export type BillingViewType = "PRIMARY" | "BILLING_GROUP" | "CUSTOM";
79
+ /**
80
+ * Type definition for `AWS::Billing::BillingView.DimensionKey`.
81
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-dimensionkey.html}
82
+ */
83
+ export type DimensionKey = "LINKED_ACCOUNT";
84
+ /**
85
+ * Type definition for `AWS::Billing::BillingView.Tag`.
86
+ * A key-value pair to associate with a Billing View.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billing-billingview-tag.html}
88
+ */
89
+ export type Tag = {
90
+ /**
91
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
92
+ * @minLength `1`
93
+ * @maxLength `128`
94
+ */
95
+ Key: string;
96
+ /**
97
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
98
+ * @minLength `0`
99
+ * @maxLength `256`
100
+ */
101
+ Value: string;
102
+ };
103
+ /**
104
+ * Resource type definition for `AWS::Billing::BillingView`.
105
+ * A billing view is a container of cost & usage metadata.
106
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html}
107
+ */
108
+ export declare class BillingBillingView extends $Resource<"AWS::Billing::BillingView", BillingBillingViewProperties, BillingBillingViewAttributes> {
109
+ static readonly Type = "AWS::Billing::BillingView";
110
+ constructor(logicalId: string, properties: BillingBillingViewProperties, options?: $ResourceOptions);
111
+ }
112
+ //# sourceMappingURL=AWS-Billing-BillingView.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::Billing::BillingView`.
4
+ * A billing view is a container of cost & usage metadata.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billing-billingview.html}
6
+ */
7
+ export class BillingBillingView extends $Resource {
8
+ static Type = "AWS::Billing::BillingView";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, BillingBillingView.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Billing-BillingView.js.map
@@ -6,6 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type CertificateManagerCertificateProperties = {
8
8
  CertificateAuthorityArn?: string;
9
+ CertificateExport?: string;
9
10
  CertificateTransparencyLoggingPreference?: string;
10
11
  DomainName: string;
11
12
  DomainValidationOptions?: DomainValidationOption[];
@@ -132,6 +132,7 @@ export type RDSDBClusterProperties = {
132
132
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
133
133
  */
134
134
  DatabaseName?: string;
135
+ DeleteAutomatedBackups?: boolean;
135
136
  /**
136
137
  * A value that indicates whether the DB cluster has deletion protection enabled. The database can't be deleted when deletion protection is enabled. By default, deletion protection is disabled.
137
138
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
@@ -592,9 +592,7 @@ export type RDSDBInstanceProperties = {
592
592
  MonitoringRoleArn?: string;
593
593
  /**
594
594
  * Specifies whether the DB instance is a Multi-AZ deployment. You can't set the ``AvailabilityZone`` parameter if the DB instance is a Multi-AZ deployment.
595
- This setting doesn't apply to the following DB instances:
596
- + Amazon Aurora (DB instance Availability Zones (AZs) are managed by the DB cluster.)
597
- + RDS Custom
595
+ This setting doesn't apply to Amazon Aurora because the DB instance Availability Zones (AZs) are managed by the DB cluster.
598
596
  */
599
597
  MultiAZ?: boolean;
600
598
  /**
@@ -46,7 +46,7 @@ export type SageMakerDomainProperties = {
46
46
  * @minLength `1`
47
47
  * @maxLength `16`
48
48
  */
49
- SubnetIds: string[];
49
+ SubnetIds?: string[];
50
50
  /**
51
51
  * Indicates whether the tags added to Domain, User Profile and Space entity is propagated to all SageMaker resources.
52
52
  */
@@ -62,7 +62,7 @@ export type SageMakerDomainProperties = {
62
62
  * @maxLength `32`
63
63
  * @pattern `[-0-9a-zA-Z]+`
64
64
  */
65
- VpcId: string;
65
+ VpcId?: string;
66
66
  };
67
67
  /**
68
68
  * Attribute type definition for `AWS::SageMaker::Domain`.
@@ -692,6 +692,11 @@ export type UnifiedStudioSettings = {
692
692
  * @pattern `[\w\.-]+$`
693
693
  */
694
694
  ProjectS3Path?: string;
695
+ /**
696
+ * The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
697
+ * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::[0-9]+:application/[a-zA-Z0-9-_.]+/apl-[a-zA-Z0-9]+$`
698
+ */
699
+ SingleSignOnApplicationArn?: string;
695
700
  /**
696
701
  * Sets whether you can access the domain in Amazon SageMaker Studio:
697
702
 
@@ -85,6 +85,12 @@ export type TransferConnectorProperties = {
85
85
  * Configuration for an SFTP connector.
86
86
  */
87
87
  SftpConfig?: {
88
+ /**
89
+ * Specifies the number of active connections that your connector can establish with the remote server at the same time.
90
+ * @min `1`
91
+ * @max `5`
92
+ */
93
+ MaxConcurrentConnections?: number;
88
94
  /**
89
95
  * List of public host keys, for the external server to which you are connecting.
90
96
  * @maxLength `10`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.374",
3
+ "version": "0.1.376",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },