@awboost/cfn-resource-types 0.1.303 → 0.1.304

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.
@@ -109,6 +109,29 @@ export type CalendarInterval = {
109
109
  */
110
110
  StartTime: number;
111
111
  };
112
+ /**
113
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.DependencyConfig`.
114
+ * Configuration for identifying a dependency and its operation
115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-dependencyconfig.html}
116
+ */
117
+ export type DependencyConfig = {
118
+ /**
119
+ * If this SLO is related to a metric collected by Application Signals, you must use this field to specify which dependency the SLO metric is related to.
120
+ */
121
+ DependencyKeyAttributes: DependencyKeyAttributes;
122
+ /**
123
+ * When the SLO monitors a specific operation of the dependency, this field specifies the name of that operation in the dependency.
124
+ * @minLength `1`
125
+ * @maxLength `255`
126
+ */
127
+ DependencyOperationName: string;
128
+ };
129
+ /**
130
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.DependencyKeyAttributes`.
131
+ * If this SLO is related to a metric collected by Application Signals, you must use this field to specify which dependency the SLO metric is related to.
132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-dependencykeyattributes.html}
133
+ */
134
+ export type DependencyKeyAttributes = Record<string, string>;
112
135
  /**
113
136
  * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.Dimension`.
114
137
  * A dimension is a name/value pair that is part of the identity of a metric. Because dimensions are part of the unique identifier for a metric, whenever you add a unique name/value pair to one of your metrics, you are creating a new variation of that metric. For example, many Amazon EC2 metrics publish `InstanceId` as a dimension name, and the actual instance ID as the value for that dimension. You can assign up to 30 dimensions to a metric.
@@ -321,6 +344,10 @@ export type RequestBasedSli = {
321
344
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-requestbasedslimetric.html}
322
345
  */
323
346
  export type RequestBasedSliMetric = {
347
+ /**
348
+ * Configuration for identifying a dependency and its operation
349
+ */
350
+ DependencyConfig?: DependencyConfig;
324
351
  /**
325
352
  * This is a string-to-string map that contains information about the type of object that this SLO is related to.
326
353
  */
@@ -385,6 +412,10 @@ export type Sli = {
385
412
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-slimetric.html}
386
413
  */
387
414
  export type SliMetric = {
415
+ /**
416
+ * Configuration for identifying a dependency and its operation
417
+ */
418
+ DependencyConfig?: DependencyConfig;
388
419
  /**
389
420
  * This is a string-to-string map that contains information about the type of object that this SLO is related to.
390
421
  */
@@ -11,10 +11,6 @@ export type EKSPodIdentityAssociationProperties = {
11
11
  * @minLength `1`
12
12
  */
13
13
  ClusterName: string;
14
- /**
15
- * The Disable Session Tags of the pod identity association.
16
- */
17
- DisableSessionTags?: boolean;
18
14
  /**
19
15
  * The Kubernetes namespace that the pod identity association is created for.
20
16
  */
@@ -31,11 +27,6 @@ export type EKSPodIdentityAssociationProperties = {
31
27
  * An array of key-value pairs to apply to this resource.
32
28
  */
33
29
  Tags?: Tag[];
34
- /**
35
- * The Target Role Arn of the pod identity association.
36
- * @minLength `1`
37
- */
38
- TargetRoleArn?: string;
39
30
  };
40
31
  /**
41
32
  * Attribute type definition for `AWS::EKS::PodIdentityAssociation`.
@@ -51,11 +42,6 @@ export type EKSPodIdentityAssociationAttributes = {
51
42
  * @minLength `1`
52
43
  */
53
44
  AssociationId: string;
54
- /**
55
- * The External Id of the pod identity association.
56
- * @minLength `1`
57
- */
58
- ExternalId: string;
59
45
  };
60
46
  /**
61
47
  * Type definition for `AWS::EKS::PodIdentityAssociation.Tag`.
@@ -1,35 +1,53 @@
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::Neptune::DBSubnetGroup
4
+ * The AWS::Neptune::DBSubnetGroup type creates an Amazon Neptune DB subnet group. Subnet groups must contain at least two subnets in two different Availability Zones in the same AWS Region.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html}
6
6
  */
7
7
  export type NeptuneDBSubnetGroupProperties = {
8
+ /**
9
+ * The description for the DB subnet group.
10
+ */
8
11
  DBSubnetGroupDescription: string;
12
+ /**
13
+ * The name for the DB subnet group. This value is stored as a lowercase string.
14
+
15
+ Constraints: Must contain no more than 255 lowercase alphanumeric characters or hyphens. Must not be "Default".
16
+
17
+ Example: mysubnetgroup
18
+
19
+
20
+ */
9
21
  DBSubnetGroupName?: string;
22
+ /**
23
+ * The Amazon EC2 subnet IDs for the DB subnet group.
24
+ */
10
25
  SubnetIds: string[];
26
+ /**
27
+ * An optional array of key-value pairs to apply to this DB subnet group.
28
+ */
11
29
  Tags?: Tag[];
12
30
  };
13
- /**
14
- * Attribute type definition for `AWS::Neptune::DBSubnetGroup`.
15
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html#aws-resource-neptune-dbsubnetgroup-return-values}
16
- */
17
- export type NeptuneDBSubnetGroupAttributes = {
18
- Id: string;
19
- };
20
31
  /**
21
32
  * Type definition for `AWS::Neptune::DBSubnetGroup.Tag`.
33
+ * An optional array of key-value pairs to apply to this DB subnet group.
22
34
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbsubnetgroup-tag.html}
23
35
  */
24
36
  export type Tag = {
37
+ /**
38
+ * 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 -.
39
+ */
25
40
  Key: string;
41
+ /**
42
+ * 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 -.
43
+ */
26
44
  Value: string;
27
45
  };
28
46
  /**
29
- * Resource Type definition for AWS::Neptune::DBSubnetGroup
47
+ * The AWS::Neptune::DBSubnetGroup type creates an Amazon Neptune DB subnet group. Subnet groups must contain at least two subnets in two different Availability Zones in the same AWS Region.
30
48
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html}
31
49
  */
32
- export declare class NeptuneDBSubnetGroup extends $Resource<"AWS::Neptune::DBSubnetGroup", NeptuneDBSubnetGroupProperties, NeptuneDBSubnetGroupAttributes> {
50
+ export declare class NeptuneDBSubnetGroup extends $Resource<"AWS::Neptune::DBSubnetGroup", NeptuneDBSubnetGroupProperties, Record<string, never>> {
33
51
  static readonly Type = "AWS::Neptune::DBSubnetGroup";
34
52
  constructor(logicalId: string, properties: NeptuneDBSubnetGroupProperties, options?: $ResourceOptions);
35
53
  }
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::Neptune::DBSubnetGroup
3
+ * The AWS::Neptune::DBSubnetGroup type creates an Amazon Neptune DB subnet group. Subnet groups must contain at least two subnets in two different Availability Zones in the same AWS Region.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbsubnetgroup.html}
5
5
  */
6
6
  export class NeptuneDBSubnetGroup extends $Resource {
@@ -119,7 +119,7 @@ export type WeightedTargetGroup = {
119
119
  */
120
120
  TargetGroupIdentifier: string;
121
121
  /**
122
- * @min `1`
122
+ * @min `0`
123
123
  * @max `999`
124
124
  */
125
125
  Weight?: number;
@@ -12,7 +12,7 @@ export type VpcLatticeResourceConfigurationProperties = {
12
12
  * @maxLength `40`
13
13
  * @pattern `^(?!rcfg-)(?![-])(?!.*[-]$)(?!.*[-]{2})[a-z0-9-]+$`
14
14
  */
15
- Name?: string;
15
+ Name: string;
16
16
  PortRanges?: string[];
17
17
  ProtocolType?: "TCP";
18
18
  ResourceConfigurationAuthType?: "NONE" | "AWS_IAM";
@@ -37,7 +37,7 @@ export type VpcLatticeResourceConfigurationProperties = {
37
37
  * @pattern `^rcfg-[0-9a-z]{17}$`
38
38
  */
39
39
  ResourceConfigurationGroupId?: string;
40
- ResourceConfigurationType?: "GROUP" | "CHILD" | "SINGLE" | "ARN";
40
+ ResourceConfigurationType: "GROUP" | "CHILD" | "SINGLE" | "ARN";
41
41
  ResourceGatewayId?: string;
42
42
  /**
43
43
  * @minLength `0`
@@ -12,7 +12,7 @@ export type VpcLatticeResourceGatewayProperties = {
12
12
  * @maxLength `40`
13
13
  * @pattern `^(?!rgw-)(?![-])(?!.*[-]$)(?!.*[-]{2})[a-z0-9-]+$`
14
14
  */
15
- Name?: string;
15
+ Name: string;
16
16
  /**
17
17
  * The ID of one or more security groups to associate with the endpoint network interface.
18
18
  */
@@ -20,7 +20,7 @@ export type VpcLatticeResourceGatewayProperties = {
20
20
  /**
21
21
  * The ID of one or more subnets in which to create an endpoint network interface.
22
22
  */
23
- SubnetIds?: string[];
23
+ SubnetIds: string[];
24
24
  /**
25
25
  * @minLength `0`
26
26
  * @maxLength `50`
@@ -30,7 +30,7 @@ export type VpcLatticeResourceGatewayProperties = {
30
30
  * @minLength `5`
31
31
  * @maxLength `50`
32
32
  */
33
- VpcIdentifier?: string;
33
+ VpcIdentifier: string;
34
34
  };
35
35
  /**
36
36
  * Attribute type definition for `AWS::VpcLattice::ResourceGateway`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.303",
3
+ "version": "0.1.304",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },