@awboost/cfn-resource-types 0.1.89 → 0.1.90

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,25 +1,24 @@
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::ApiGateway::VpcLink`.
5
- * Schema for AWS ApiGateway VpcLink
4
+ * The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
6
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
7
6
  */
8
7
  export type ApiGatewayVpcLinkProperties = {
9
8
  /**
10
- * A description of the VPC link.
9
+ * The description of the VPC link.
11
10
  */
12
11
  Description?: string;
13
12
  /**
14
- * A name for the VPC link.
13
+ * The name used to label and identify the VPC link.
15
14
  */
16
15
  Name: string;
17
16
  /**
18
- * An array of arbitrary tags (key-value pairs) to associate with the stage.
17
+ * An array of arbitrary tags (key-value pairs) to associate with the VPC link.
19
18
  */
20
19
  Tags?: Tag[];
21
20
  /**
22
- * The ARN of network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS account of the API owner.
21
+ * The ARN of the network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS-account of the API owner.
23
22
  */
24
23
  TargetArns: string[];
25
24
  };
@@ -28,9 +27,6 @@ export type ApiGatewayVpcLinkProperties = {
28
27
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html#aws-resource-apigateway-vpclink-return-values}
29
28
  */
30
29
  export type ApiGatewayVpcLinkAttributes = {
31
- /**
32
- * The ID of the instance that backs VPC link.
33
- */
34
30
  VpcLinkId: string;
35
31
  };
36
32
  /**
@@ -42,8 +38,7 @@ export type Tag = {
42
38
  Value: string;
43
39
  };
44
40
  /**
45
- * Resource type definition for `AWS::ApiGateway::VpcLink`.
46
- * Schema for AWS ApiGateway VpcLink
41
+ * The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
47
42
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
48
43
  */
49
44
  export declare class ApiGatewayVpcLink extends $Resource<"AWS::ApiGateway::VpcLink", ApiGatewayVpcLinkProperties, ApiGatewayVpcLinkAttributes> {
@@ -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::ApiGateway::VpcLink`.
4
- * Schema for AWS ApiGateway VpcLink
3
+ * The ``AWS::ApiGateway::VpcLink`` resource creates an API Gateway VPC link for a REST API to access resources in an Amazon Virtual Private Cloud (VPC). For more information, see [vpclink:create](https://docs.aws.amazon.com/apigateway/latest/api/API_CreateVpcLink.html) in the ``Amazon API Gateway REST API Reference``.
5
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-vpclink.html}
6
5
  */
7
6
  export class ApiGatewayVpcLink extends $Resource {
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-profile.html}
6
6
  */
7
7
  export type RolesAnywhereProfileProperties = {
8
+ AttributeMappings?: AttributeMapping[];
8
9
  /**
9
10
  * @min `900`
10
11
  * @max `43200`
@@ -33,6 +34,26 @@ export type RolesAnywhereProfileAttributes = {
33
34
  */
34
35
  ProfileId: string;
35
36
  };
37
+ /**
38
+ * Type definition for `AWS::RolesAnywhere::Profile.AttributeMapping`.
39
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-attributemapping.html}
40
+ */
41
+ export type AttributeMapping = {
42
+ CertificateField: CertificateField;
43
+ MappingRules: MappingRule[];
44
+ };
45
+ /**
46
+ * Type definition for `AWS::RolesAnywhere::Profile.CertificateField`.
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-certificatefield.html}
48
+ */
49
+ export type CertificateField = "x509Subject" | "x509Issuer" | "x509SAN";
50
+ /**
51
+ * Type definition for `AWS::RolesAnywhere::Profile.MappingRule`.
52
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-mappingrule.html}
53
+ */
54
+ export type MappingRule = {
55
+ Specifier: string;
56
+ };
36
57
  /**
37
58
  * Type definition for `AWS::RolesAnywhere::Profile.Tag`.
38
59
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rolesanywhere-profile-tag.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },