@awboost/cfn-resource-types 0.1.432 → 0.1.434

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.
@@ -17,10 +17,18 @@ export type BCMDataExportsExportProperties = {
17
17
  * @see {@link https://docs.aws.amazon.com/aws-cost-management/latest/APIReference/API_DataExports_CreateExport.html#API_DataExports_CreateExport_RequestSyntax}
18
18
  */
19
19
  export type BCMDataExportsExportAttributes = {
20
+ Export: {
21
+ /**
22
+ * @minLength `20`
23
+ * @maxLength `2048`
24
+ * @pattern `^arn:aws[-a-z0-9]*:(bcm-data-exports):[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
25
+ */
26
+ ExportArn: string;
27
+ };
20
28
  /**
21
29
  * @minLength `20`
22
30
  * @maxLength `2048`
23
- * @pattern `^arn:aws[-a-z0-9]*:[-a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
31
+ * @pattern `^arn:aws[-a-z0-9]*:(bcm-data-exports):[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
24
32
  */
25
33
  ExportArn: string;
26
34
  };
@@ -62,12 +70,6 @@ export type Export = {
62
70
  */
63
71
  Description?: string;
64
72
  DestinationConfigurations: DestinationConfigurations;
65
- /**
66
- * @minLength `20`
67
- * @maxLength `2048`
68
- * @pattern `^arn:aws[-a-z0-9]*:[-a-z0-9]+:[-a-z0-9]*:[0-9]{12}:[-a-zA-Z0-9/:_]+$`
69
- */
70
- ExportArn?: string;
71
73
  /**
72
74
  * @minLength `1`
73
75
  * @maxLength `128`
@@ -96,7 +96,6 @@ export type EvaluationFormItem = {
96
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-evaluationform-evaluationformnumericquestionautomation.html}
97
97
  */
98
98
  export type EvaluationFormNumericQuestionAutomation = {
99
- AnswerSource?: any;
100
99
  /**
101
100
  * The property value of the automation.
102
101
  */
@@ -0,0 +1,100 @@
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::FormType`.
5
+ * Create and manage form types in Amazon Datazone
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html}
7
+ */
8
+ export type DataZoneFormTypeProperties = {
9
+ /**
10
+ * The description of this Amazon DataZone metadata form type.
11
+ * @minLength `0`
12
+ * @maxLength `2048`
13
+ */
14
+ Description?: string;
15
+ /**
16
+ * The ID of the Amazon DataZone domain in which this metadata form type is created.
17
+ * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
18
+ */
19
+ DomainIdentifier: string;
20
+ /**
21
+ * The model of this Amazon DataZone metadata form type.
22
+ */
23
+ Model: Model;
24
+ /**
25
+ * The name of this Amazon DataZone metadata form type.
26
+ * @minLength `1`
27
+ * @maxLength `128`
28
+ * @pattern `^(?![0-9_])\w+$|^_\w*[a-zA-Z0-9]\w*$`
29
+ */
30
+ Name: string;
31
+ /**
32
+ * The ID of the Amazon DataZone project that owns this metadata form type.
33
+ * @pattern `^[a-zA-Z0-9_-]{1,36}$`
34
+ */
35
+ OwningProjectIdentifier: string;
36
+ /**
37
+ * The status of this Amazon DataZone metadata form type.
38
+ */
39
+ Status?: "ENABLED" | "DISABLED";
40
+ };
41
+ /**
42
+ * Attribute type definition for `AWS::DataZone::FormType`.
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html#aws-resource-datazone-formtype-return-values}
44
+ */
45
+ export type DataZoneFormTypeAttributes = {
46
+ /**
47
+ * The timestamp of when this Amazon DataZone metadata form type was created.
48
+ */
49
+ CreatedAt: string;
50
+ /**
51
+ * The user who created this Amazon DataZone metadata form type.
52
+ * @pattern `^[a-zA-Z0-9_-]{1,36}$`
53
+ */
54
+ CreatedBy: string;
55
+ /**
56
+ * The ID of the Amazon DataZone domain in which this metadata form type is created.
57
+ * @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
58
+ */
59
+ DomainId: string;
60
+ /**
61
+ * The ID of this Amazon DataZone metadata form type.
62
+ * @minLength `1`
63
+ * @maxLength `385`
64
+ * @pattern `^(?!\.)[\w\.]*\w$`
65
+ */
66
+ FormTypeIdentifier: string;
67
+ /**
68
+ * The ID of the project that owns this Amazon DataZone metadata form type.
69
+ * @pattern `^[a-zA-Z0-9_-]{1,36}$`
70
+ */
71
+ OwningProjectId: string;
72
+ /**
73
+ * The revision of this Amazon DataZone metadata form type.
74
+ * @minLength `1`
75
+ * @maxLength `64`
76
+ */
77
+ Revision: string;
78
+ };
79
+ /**
80
+ * Type definition for `AWS::DataZone::FormType.Model`.
81
+ * Indicates the smithy model of the API.
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-formtype-model.html}
83
+ */
84
+ export type Model = {
85
+ /**
86
+ * @minLength `1`
87
+ * @maxLength `100000`
88
+ */
89
+ Smithy?: string;
90
+ };
91
+ /**
92
+ * Resource type definition for `AWS::DataZone::FormType`.
93
+ * Create and manage form types in Amazon Datazone
94
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html}
95
+ */
96
+ export declare class DataZoneFormType extends $Resource<"AWS::DataZone::FormType", DataZoneFormTypeProperties, DataZoneFormTypeAttributes> {
97
+ static readonly Type = "AWS::DataZone::FormType";
98
+ constructor(logicalId: string, properties: DataZoneFormTypeProperties, options?: $ResourceOptions);
99
+ }
100
+ //# sourceMappingURL=AWS-DataZone-FormType.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::FormType`.
4
+ * Create and manage form types in Amazon Datazone
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.html}
6
+ */
7
+ export class DataZoneFormType extends $Resource {
8
+ static Type = "AWS::DataZone::FormType";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, DataZoneFormType.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-DataZone-FormType.js.map
@@ -24,6 +24,14 @@ export type DataZoneOwnerProperties = {
24
24
  */
25
25
  Owner: OwnerProperties;
26
26
  };
27
+ /**
28
+ * Attribute type definition for `AWS::DataZone::Owner`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#aws-resource-datazone-owner-return-values}
30
+ */
31
+ export type DataZoneOwnerAttributes = {
32
+ OwnerIdentifier: string;
33
+ OwnerType: "USER" | "GROUP";
34
+ };
27
35
  /**
28
36
  * Type definition for `AWS::DataZone::Owner.OwnerGroupProperties`.
29
37
  * The properties of the domain unit owners group.
@@ -69,7 +77,7 @@ export type OwnerUserProperties = {
69
77
  * A owner can set up authorization permissions on their resources.
70
78
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html}
71
79
  */
72
- export declare class DataZoneOwner extends $Resource<"AWS::DataZone::Owner", DataZoneOwnerProperties, Record<string, never>> {
80
+ export declare class DataZoneOwner extends $Resource<"AWS::DataZone::Owner", DataZoneOwnerProperties, DataZoneOwnerAttributes> {
73
81
  static readonly Type = "AWS::DataZone::Owner";
74
82
  constructor(logicalId: string, properties: DataZoneOwnerProperties, options?: $ResourceOptions);
75
83
  }
@@ -16,6 +16,14 @@ export type DataZoneProjectMembershipProperties = {
16
16
  */
17
17
  ProjectIdentifier: string;
18
18
  };
19
+ /**
20
+ * Attribute type definition for `AWS::DataZone::ProjectMembership`.
21
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html#aws-resource-datazone-projectmembership-return-values}
22
+ */
23
+ export type DataZoneProjectMembershipAttributes = {
24
+ MemberIdentifier: string;
25
+ MemberIdentifierType: MemberIdentifierType;
26
+ };
19
27
  /**
20
28
  * Type definition for `AWS::DataZone::ProjectMembership.Member`.
21
29
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html}
@@ -25,6 +33,11 @@ export type Member = {
25
33
  } | {
26
34
  GroupIdentifier: string;
27
35
  };
36
+ /**
37
+ * Type definition for `AWS::DataZone::ProjectMembership.MemberIdentifierType`.
38
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-memberidentifiertype.html}
39
+ */
40
+ export type MemberIdentifierType = "USER_IDENTIFIER" | "GROUP_IDENTIFIER";
28
41
  /**
29
42
  * Type definition for `AWS::DataZone::ProjectMembership.UserDesignation`.
30
43
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-userdesignation.html}
@@ -34,7 +47,7 @@ export type UserDesignation = "PROJECT_OWNER" | "PROJECT_CONTRIBUTOR" | "PROJECT
34
47
  * Definition of AWS::DataZone::ProjectMembership Resource Type
35
48
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html}
36
49
  */
37
- export declare class DataZoneProjectMembership extends $Resource<"AWS::DataZone::ProjectMembership", DataZoneProjectMembershipProperties, Record<string, never>> {
50
+ export declare class DataZoneProjectMembership extends $Resource<"AWS::DataZone::ProjectMembership", DataZoneProjectMembershipProperties, DataZoneProjectMembershipAttributes> {
38
51
  static readonly Type = "AWS::DataZone::ProjectMembership";
39
52
  constructor(logicalId: string, properties: DataZoneProjectMembershipProperties, options?: $ResourceOptions);
40
53
  }
@@ -927,6 +927,9 @@ export type NetworkInterface = {
927
927
  If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
928
928
  */
929
929
  DeviceIndex?: number;
930
+ /**
931
+ * The number of ENA queues to be created with the instance.
932
+ */
930
933
  EnaQueueCount?: number;
931
934
  /**
932
935
  * The ENA Express configuration for the network interface.
@@ -1035,8 +1038,9 @@ export type Placement = {
1035
1038
  */
1036
1039
  Affinity?: string;
1037
1040
  /**
1038
- * The Availability Zone for the instance.
1039
- */
1041
+ * The Availability Zone for the instance.
1042
+ Either ``AvailabilityZone`` or ``AvailabilityZoneId`` can be specified, but not both
1043
+ */
1040
1044
  AvailabilityZone?: string;
1041
1045
  /**
1042
1046
  * The Group Id of a placement group. You must specify the Placement Group *Group Id* to launch an instance in a shared placement group.
@@ -87,6 +87,7 @@ export type IdMappingRuleBasedProperties = {
87
87
  */
88
88
  export type IdMappingTechniques = {
89
89
  IdMappingType?: "PROVIDER" | "RULE_BASED";
90
+ NormalizationVersion?: string;
90
91
  ProviderProperties?: ProviderProperties;
91
92
  RuleBasedProperties?: IdMappingRuleBasedProperties;
92
93
  };
@@ -257,10 +257,10 @@ export type IpPermission = {
257
257
  */
258
258
  export type LocationCapacity = {
259
259
  /**
260
- * The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits. If any auto-scaling policy is defined for the container fleet, the desired instance will only be applied once during fleet creation and will be ignored in updates to avoid conflicts with auto-scaling. During updates with any auto-scaling policy defined, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
260
+ * Defaults to MinSize if not defined. The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits. If any auto-scaling policy is defined for the container fleet, the desired instance will only be applied once during fleet creation and will be ignored in updates to avoid conflicts with auto-scaling. During updates with any auto-scaling policy defined, if current desired instance is lower than the new MinSize, it will be increased to the new MinSize; if current desired instance is larger than the new MaxSize, it will be decreased to the new MaxSize.
261
261
  * @min `0`
262
262
  */
263
- DesiredEC2Instances: number;
263
+ DesiredEC2Instances?: number;
264
264
  /**
265
265
  * The maximum value that is allowed for the fleet's instance count for a location.
266
266
  * @min `0`
@@ -222,10 +222,10 @@ export type IpPermission = {
222
222
  */
223
223
  export type LocationCapacity = {
224
224
  /**
225
- * The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits.
225
+ * Defaults to MinSize if not defined. The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits.
226
226
  * @min `0`
227
227
  */
228
- DesiredEC2Instances: number;
228
+ DesiredEC2Instances?: number;
229
229
  /**
230
230
  * The maximum value that is allowed for the fleet's instance count for a location. When creating a new fleet, GameLift automatically sets this value to "1". Once the fleet is active, you can change this value.
231
231
  * @min `0`
@@ -37,6 +37,7 @@ export type QuickSightCustomPermissionsAttributes = {
37
37
  */
38
38
  export type Capabilities = {
39
39
  AddOrRunAnomalyDetectionForAnalyses?: CapabilityState;
40
+ Analysis?: CapabilityState;
40
41
  CreateAndUpdateDashboardEmailReports?: CapabilityState;
41
42
  CreateAndUpdateDataSources?: CapabilityState;
42
43
  CreateAndUpdateDatasets?: CapabilityState;
@@ -44,6 +45,7 @@ export type Capabilities = {
44
45
  CreateAndUpdateThresholdAlerts?: CapabilityState;
45
46
  CreateSPICEDataset?: CapabilityState;
46
47
  CreateSharedFolders?: CapabilityState;
48
+ Dashboard?: CapabilityState;
47
49
  ExportToCsv?: CapabilityState;
48
50
  ExportToCsvInScheduledReports?: CapabilityState;
49
51
  ExportToExcel?: CapabilityState;
@@ -9,7 +9,7 @@ export type RDSDBProxyProperties = {
9
9
  * The authorization mechanism that the proxy uses.
10
10
  * @minLength `1`
11
11
  */
12
- Auth: AuthFormat[];
12
+ Auth?: AuthFormat[];
13
13
  /**
14
14
  * The identifier for the proxy. This name must be unique for all proxies owned by your AWS account in the specified AWS Region.
15
15
  * @maxLength `64`
@@ -20,6 +20,14 @@ export type RDSDBProxyProperties = {
20
20
  * Whether the proxy includes detailed information about SQL statements in its logs.
21
21
  */
22
22
  DebugLogging?: boolean;
23
+ /**
24
+ * The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
25
+ */
26
+ DefaultAuthScheme?: "IAM_AUTH" | "NONE";
27
+ /**
28
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
29
+ */
30
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL";
23
31
  /**
24
32
  * The kinds of databases that the proxy can connect to.
25
33
  */
@@ -40,6 +48,10 @@ export type RDSDBProxyProperties = {
40
48
  * An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.
41
49
  */
42
50
  Tags?: TagFormat[];
51
+ /**
52
+ * The network type that the proxy uses to connect to the target database. The network type determines the IP version that the proxy uses for connections to the database.
53
+ */
54
+ TargetConnectionNetworkType?: "IPV4" | "IPV6";
43
55
  /**
44
56
  * VPC security group IDs to associate with the new proxy.
45
57
  * @minLength `1`
@@ -17,6 +17,10 @@ export type RDSDBProxyEndpointProperties = {
17
17
  * @pattern `[0-z]*`
18
18
  */
19
19
  DBProxyName: string;
20
+ /**
21
+ * The network type of the DB proxy endpoint. The network type determines the IP version that the proxy endpoint supports.
22
+ */
23
+ EndpointNetworkType?: "IPV4" | "IPV6" | "DUAL";
20
24
  /**
21
25
  * An optional set of key-value pairs to associate arbitrary data of your choosing with the DB proxy endpoint.
22
26
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.432",
3
+ "version": "0.1.434",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },