@awboost/cfn-resource-types 0.1.240 → 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.
@@ -0,0 +1,34 @@
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::Notifications::ManagedNotificationAccountContactAssociation`.
5
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
7
+ */
8
+ export type NotificationsManagedNotificationAccountContactAssociationProperties = {
9
+ /**
10
+ * This unique identifier for Contact
11
+ */
12
+ ContactIdentifier: ContactIdentifier;
13
+ /**
14
+ * The managed notification configuration ARN, against which the account contact association will be created
15
+ * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
16
+ */
17
+ ManagedNotificationConfigurationArn: string;
18
+ };
19
+ /**
20
+ * Type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation.ContactIdentifier`.
21
+ * This unique identifier for Contact
22
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-notifications-managednotificationaccountcontactassociation-contactidentifier.html}
23
+ */
24
+ export type ContactIdentifier = "ACCOUNT_PRIMARY" | "ACCOUNT_ALTERNATE_SECURITY" | "ACCOUNT_ALTERNATE_OPERATIONS" | "ACCOUNT_ALTERNATE_BILLING";
25
+ /**
26
+ * Resource type definition for `AWS::Notifications::ManagedNotificationAccountContactAssociation`.
27
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
29
+ */
30
+ export declare class NotificationsManagedNotificationAccountContactAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAccountContactAssociation", NotificationsManagedNotificationAccountContactAssociationProperties, Record<string, never>> {
31
+ static readonly Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
32
+ constructor(logicalId: string, properties: NotificationsManagedNotificationAccountContactAssociationProperties, options?: $ResourceOptions);
33
+ }
34
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.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::Notifications::ManagedNotificationAccountContactAssociation`.
4
+ * This resource schema represents the ManagedNotificationAccountContactAssociation resource in the AWS User Notifications.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationaccountcontactassociation.html}
6
+ */
7
+ export class NotificationsManagedNotificationAccountContactAssociation extends $Resource {
8
+ static Type = "AWS::Notifications::ManagedNotificationAccountContactAssociation";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, NotificationsManagedNotificationAccountContactAssociation.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAccountContactAssociation.js.map
@@ -0,0 +1,29 @@
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
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
6
+ */
7
+ export type NotificationsManagedNotificationAdditionalChannelAssociationProperties = {
8
+ /**
9
+ * ARN identifier of the channel.
10
+ Example: arn:aws:chatbot::123456789012:chat-configuration/slack-channel/security-ops
11
+ * @pattern `^arn:aws:(chatbot|consoleapp|notifications-contacts):[a-zA-Z0-9-]*:[0-9]{12}:[a-zA-Z0-9-_.@]+/[a-zA-Z0-9/_.@:-]+$`
12
+ */
13
+ ChannelArn: string;
14
+ /**
15
+ * ARN identifier of the Managed Notification.
16
+ Example: arn:aws:notifications::381491923782:managed-notification-configuration/category/AWS-Health/sub-category/Billing
17
+ * @pattern `^arn:[-.a-z0-9]{1,63}:notifications::[0-9]{12}:managed-notification-configuration/category/[a-zA-Z0-9-]{3,64}/sub-category/[a-zA-Z0-9-]{3,64}$`
18
+ */
19
+ ManagedNotificationConfigurationArn: string;
20
+ };
21
+ /**
22
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
23
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
24
+ */
25
+ export declare class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource<"AWS::Notifications::ManagedNotificationAdditionalChannelAssociation", NotificationsManagedNotificationAdditionalChannelAssociationProperties, Record<string, never>> {
26
+ static readonly Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
27
+ constructor(logicalId: string, properties: NotificationsManagedNotificationAdditionalChannelAssociationProperties, options?: $ResourceOptions);
28
+ }
29
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Definition of AWS::Notifications::ManagedNotificationAdditionalChannelAssociation Resource Type
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-notifications-managednotificationadditionalchannelassociation.html}
5
+ */
6
+ export class NotificationsManagedNotificationAdditionalChannelAssociation extends $Resource {
7
+ static Type = "AWS::Notifications::ManagedNotificationAdditionalChannelAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NotificationsManagedNotificationAdditionalChannelAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Notifications-ManagedNotificationAdditionalChannelAssociation.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.240",
3
+ "version": "0.1.242",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },