@awboost/cfn-resource-types 0.1.325 → 0.1.327

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.
@@ -35,7 +35,7 @@ export type BedrockBlueprintProperties = {
35
35
  /**
36
36
  * Modality Type
37
37
  */
38
- Type: "DOCUMENT" | "IMAGE";
38
+ Type: "DOCUMENT" | "IMAGE" | "AUDIO";
39
39
  };
40
40
  /**
41
41
  * Attribute type definition for `AWS::Bedrock::Blueprint`.
@@ -35,10 +35,21 @@ export type BudgetData = {
35
35
  BudgetType: string;
36
36
  CostFilters?: Record<string, any>;
37
37
  CostTypes?: CostTypes;
38
+ FilterExpression?: Expression;
39
+ Metrics?: string[];
38
40
  PlannedBudgetLimits?: Record<string, any>;
39
41
  TimePeriod?: TimePeriod;
40
42
  TimeUnit: string;
41
43
  };
44
+ /**
45
+ * Type definition for `AWS::Budgets::Budget.CostCategoryValues`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costcategoryvalues.html}
47
+ */
48
+ export type CostCategoryValues = {
49
+ Key?: string;
50
+ MatchOptions?: string[];
51
+ Values?: string[];
52
+ };
42
53
  /**
43
54
  * Type definition for `AWS::Budgets::Budget.CostTypes`.
44
55
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-costtypes.html}
@@ -56,6 +67,27 @@ export type CostTypes = {
56
67
  UseAmortized?: boolean;
57
68
  UseBlended?: boolean;
58
69
  };
70
+ /**
71
+ * Type definition for `AWS::Budgets::Budget.Expression`.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expression.html}
73
+ */
74
+ export type Expression = {
75
+ And?: Expression[];
76
+ CostCategories?: CostCategoryValues;
77
+ Dimensions?: ExpressionDimensionValues;
78
+ Not?: Expression;
79
+ Or?: Expression[];
80
+ Tags?: TagValues;
81
+ };
82
+ /**
83
+ * Type definition for `AWS::Budgets::Budget.ExpressionDimensionValues`.
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-expressiondimensionvalues.html}
85
+ */
86
+ export type ExpressionDimensionValues = {
87
+ Key?: string;
88
+ MatchOptions?: string[];
89
+ Values?: string[];
90
+ };
59
91
  /**
60
92
  * Type definition for `AWS::Budgets::Budget.HistoricalOptions`.
61
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-historicaloptions.html}
@@ -105,6 +137,15 @@ export type Subscriber = {
105
137
  Address: string;
106
138
  SubscriptionType: string;
107
139
  };
140
+ /**
141
+ * Type definition for `AWS::Budgets::Budget.TagValues`.
142
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-tagvalues.html}
143
+ */
144
+ export type TagValues = {
145
+ Key?: string;
146
+ MatchOptions?: string[];
147
+ Values?: string[];
148
+ };
108
149
  /**
109
150
  * Type definition for `AWS::Budgets::Budget.TimePeriod`.
110
151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-budgets-budget-timeperiod.html}
@@ -0,0 +1,84 @@
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::DataZone::DomainUnit`.
5
+ * A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
7
+ */
8
+ export type DataZoneDomainUnitProperties = {
9
+ /**
10
+ * The description of the domain unit.
11
+ * @minLength `0`
12
+ * @maxLength `2048`
13
+ */
14
+ Description?: string;
15
+ /**
16
+ * The ID of the domain where you want to create a domain unit.
17
+ * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
18
+ */
19
+ DomainIdentifier: string;
20
+ /**
21
+ * The name of the domain unit.
22
+ * @minLength `1`
23
+ * @maxLength `128`
24
+ * @pattern `^[\w -]+$`
25
+ */
26
+ Name: string;
27
+ /**
28
+ * The ID of the parent domain unit.
29
+ * @minLength `1`
30
+ * @maxLength `256`
31
+ * @pattern `^[a-z0-9_-]+$`
32
+ */
33
+ ParentDomainUnitIdentifier: string;
34
+ };
35
+ /**
36
+ * Attribute type definition for `AWS::DataZone::DomainUnit`.
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html#aws-resource-datazone-domainunit-return-values}
38
+ */
39
+ export type DataZoneDomainUnitAttributes = {
40
+ /**
41
+ * The timestamp at which the domain unit was created.
42
+ */
43
+ CreatedAt: string;
44
+ /**
45
+ * The ID of the domain where the domain unit was created.
46
+ * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
47
+ */
48
+ DomainId: string;
49
+ /**
50
+ * The ID of the domain unit.
51
+ * @minLength `1`
52
+ * @maxLength `256`
53
+ * @pattern `^[a-z0-9_-]+$`
54
+ */
55
+ Id: string;
56
+ /**
57
+ * The identifier of the domain unit that you want to get.
58
+ * @minLength `1`
59
+ * @maxLength `256`
60
+ * @pattern `^[a-z0-9_-]+$`
61
+ */
62
+ Identifier: string;
63
+ /**
64
+ * The timestamp at which the domain unit was last updated.
65
+ */
66
+ LastUpdatedAt: string;
67
+ /**
68
+ * The ID of the parent domain unit.
69
+ * @minLength `1`
70
+ * @maxLength `256`
71
+ * @pattern `^[a-z0-9_-]+$`
72
+ */
73
+ ParentDomainUnitId: string;
74
+ };
75
+ /**
76
+ * Resource type definition for `AWS::DataZone::DomainUnit`.
77
+ * A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
79
+ */
80
+ export declare class DataZoneDomainUnit extends $Resource<"AWS::DataZone::DomainUnit", DataZoneDomainUnitProperties, DataZoneDomainUnitAttributes> {
81
+ static readonly Type = "AWS::DataZone::DomainUnit";
82
+ constructor(logicalId: string, properties: DataZoneDomainUnitProperties, options?: $ResourceOptions);
83
+ }
84
+ //# sourceMappingURL=AWS-DataZone-DomainUnit.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::DataZone::DomainUnit`.
4
+ * A domain unit enables you to easily organize your assets and other domain entities under specific business units and teams.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domainunit.html}
6
+ */
7
+ export class DataZoneDomainUnit extends $Resource {
8
+ static Type = "AWS::DataZone::DomainUnit";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, DataZoneDomainUnit.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-DataZone-DomainUnit.js.map
@@ -0,0 +1,76 @@
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::DataZone::Owner`.
5
+ * A owner can set up authorization permissions on their resources.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
7
+ */
8
+ export type DataZoneOwnerProperties = {
9
+ /**
10
+ * The ID of the domain in which you want to add the entity owner.
11
+ * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
12
+ */
13
+ DomainIdentifier: string;
14
+ /**
15
+ * The ID of the entity to which you want to add an owner.
16
+ */
17
+ EntityIdentifier: string;
18
+ /**
19
+ * The type of an entity.
20
+ */
21
+ EntityType: "DOMAIN_UNIT";
22
+ /**
23
+ * The owner that you want to add to the entity.
24
+ */
25
+ Owner: OwnerProperties;
26
+ };
27
+ /**
28
+ * Type definition for `AWS::DataZone::Owner.OwnerGroupProperties`.
29
+ * The properties of the domain unit owners group.
30
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownergroupproperties.html}
31
+ */
32
+ export type OwnerGroupProperties = {
33
+ /**
34
+ * The ID of the domain unit owners group.
35
+ * @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|[\p{L}\p{M}\p{S}\p{N}\p{P}\t\n\r ]+)`
36
+ */
37
+ GroupIdentifier?: string;
38
+ };
39
+ /**
40
+ * Type definition for `AWS::DataZone::Owner.OwnerProperties`.
41
+ * The properties of a domain unit's owner.
42
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-ownerproperties.html}
43
+ */
44
+ export type OwnerProperties = {
45
+ /**
46
+ * The properties of the domain unit owners group.
47
+ */
48
+ Group?: OwnerGroupProperties;
49
+ } | {
50
+ /**
51
+ * The properties of the owner user.
52
+ */
53
+ User?: OwnerUserProperties;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::DataZone::Owner.OwnerUserProperties`.
57
+ * The properties of the owner user.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-owner-owneruserproperties.html}
59
+ */
60
+ export type OwnerUserProperties = {
61
+ /**
62
+ * The ID of the owner user.
63
+ * @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|^[a-zA-Z_0-9+=,.@-]+$|^arn:aws:iam::\d{12}:.+$)`
64
+ */
65
+ UserIdentifier?: string;
66
+ };
67
+ /**
68
+ * Resource type definition for `AWS::DataZone::Owner`.
69
+ * A owner can set up authorization permissions on their resources.
70
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
71
+ */
72
+ export declare class DataZoneOwner extends $Resource<"AWS::DataZone::Owner", DataZoneOwnerProperties, Record<string, never>> {
73
+ static readonly Type = "AWS::DataZone::Owner";
74
+ constructor(logicalId: string, properties: DataZoneOwnerProperties, options?: $ResourceOptions);
75
+ }
76
+ //# sourceMappingURL=AWS-DataZone-Owner.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::DataZone::Owner`.
4
+ * A owner can set up authorization permissions on their resources.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
6
+ */
7
+ export class DataZoneOwner extends $Resource {
8
+ static Type = "AWS::DataZone::Owner";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, DataZoneOwner.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-DataZone-Owner.js.map
@@ -9,6 +9,7 @@ export type EC2ClientVpnEndpointProperties = {
9
9
  ClientCidrBlock: string;
10
10
  ClientConnectOptions?: ClientConnectOptions;
11
11
  ClientLoginBannerOptions?: ClientLoginBannerOptions;
12
+ ClientRouteEnforcementOptions?: ClientRouteEnforcementOptions;
12
13
  ConnectionLogOptions: ConnectionLogOptions;
13
14
  Description?: string;
14
15
  DisconnectOnSessionTimeout?: boolean;
@@ -63,6 +64,13 @@ export type ClientLoginBannerOptions = {
63
64
  BannerText?: string;
64
65
  Enabled: boolean;
65
66
  };
67
+ /**
68
+ * Type definition for `AWS::EC2::ClientVpnEndpoint.ClientRouteEnforcementOptions`.
69
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-clientrouteenforcementoptions.html}
70
+ */
71
+ export type ClientRouteEnforcementOptions = {
72
+ Enforced?: boolean;
73
+ };
66
74
  /**
67
75
  * Type definition for `AWS::EC2::ClientVpnEndpoint.ConnectionLogOptions`.
68
76
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-clientvpnendpoint-connectionlogoptions.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.325",
3
+ "version": "0.1.327",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },