@awboost/cfn-resource-types 0.1.241 → 0.1.242

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.
@@ -11,6 +11,7 @@ export type EC2ClientVpnEndpointProperties = {
11
11
  ClientLoginBannerOptions?: ClientLoginBannerOptions;
12
12
  ConnectionLogOptions: ConnectionLogOptions;
13
13
  Description?: string;
14
+ DisconnectOnSessionTimeout?: boolean;
14
15
  DnsServers?: string[];
15
16
  SecurityGroupIds?: string[];
16
17
  SelfServicePortal?: string;
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessinstance.html}
6
6
  */
7
7
  export type EC2VerifiedAccessInstanceProperties = {
8
+ /**
9
+ * Introduce CidrEndpointsCustomSubDomain property to represent the domain (say, ava.my-company.com)
10
+ */
11
+ CidrEndpointsCustomSubDomain?: string;
8
12
  /**
9
13
  * A description for the AWS Verified Access instance.
10
14
  */
@@ -35,6 +39,10 @@ export type EC2VerifiedAccessInstanceProperties = {
35
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccessinstance.html#aws-resource-ec2-verifiedaccessinstance-return-values}
36
40
  */
37
41
  export type EC2VerifiedAccessInstanceAttributes = {
42
+ /**
43
+ * Property to represent the name servers assoicated with the domain that AVA manages (say, ['ns1.amazonaws.com', 'ns2.amazonaws.com', 'ns3.amazonaws.com', 'ns4.amazonaws.com']).
44
+ */
45
+ CidrEndpointsCustomSubDomainNameServers: string[];
38
46
  /**
39
47
  * Time this Verified Access Instance was created.
40
48
  */
@@ -17,6 +17,10 @@ export type EC2VerifiedAccessTrustProviderProperties = {
17
17
  * The type of device-based trust provider. Possible values: jamf|crowdstrike
18
18
  */
19
19
  DeviceTrustProviderType?: string;
20
+ /**
21
+ * The OpenID Connect details for an oidc -type, user-identity based trust provider for L4.
22
+ */
23
+ NativeApplicationOidcOptions?: NativeApplicationOidcOptions;
20
24
  /**
21
25
  * The OpenID Connect details for an oidc -type, user-identity based trust provider.
22
26
  */
@@ -84,6 +88,45 @@ export type DeviceOptions = {
84
88
  */
85
89
  TenantId?: string;
86
90
  };
91
+ /**
92
+ * Type definition for `AWS::EC2::VerifiedAccessTrustProvider.NativeApplicationOidcOptions`.
93
+ * The OpenID Connect details for an oidc -type, user-identity based trust provider for L4.
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-verifiedaccesstrustprovider-nativeapplicationoidcoptions.html}
95
+ */
96
+ export type NativeApplicationOidcOptions = {
97
+ /**
98
+ * The OIDC authorization endpoint.
99
+ */
100
+ AuthorizationEndpoint?: string;
101
+ /**
102
+ * The client identifier.
103
+ */
104
+ ClientId?: string;
105
+ /**
106
+ * The client secret.
107
+ */
108
+ ClientSecret?: string;
109
+ /**
110
+ * The OIDC issuer.
111
+ */
112
+ Issuer?: string;
113
+ /**
114
+ * The public signing key for endpoint
115
+ */
116
+ PublicSigningKeyEndpoint?: string;
117
+ /**
118
+ * OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to details of a user. Each scope returns a specific set of user attributes.
119
+ */
120
+ Scope?: string;
121
+ /**
122
+ * The OIDC token endpoint.
123
+ */
124
+ TokenEndpoint?: string;
125
+ /**
126
+ * The OIDC user info endpoint.
127
+ */
128
+ UserInfoEndpoint?: string;
129
+ };
87
130
  /**
88
131
  * Type definition for `AWS::EC2::VerifiedAccessTrustProvider.OidcOptions`.
89
132
  * The OpenID Connect details for an oidc -type, user-identity based trust provider.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.241",
3
+ "version": "0.1.242",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },