@awboost/cfn-resource-types 0.1.467 → 0.1.469

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.
@@ -391,7 +391,7 @@ export type DataSourceParameters = {
391
391
  * Type definition for `AWS::QuickSight::DataSource.DataSourceType`.
392
392
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-datasourcetype.html}
393
393
  */
394
- export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_TABLES" | "S3_KNOWLEDGE_BASE" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SPICE" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER";
394
+ export type DataSourceType = "ADOBE_ANALYTICS" | "AMAZON_ELASTICSEARCH" | "AMAZON_OPENSEARCH" | "ATHENA" | "AURORA" | "AURORA_POSTGRESQL" | "AWS_IOT_ANALYTICS" | "DATABRICKS" | "DENODO" | "DREMIO" | "DYNAMODB" | "SAPHANA" | "DB2_AS400" | "EXASOL" | "FILE" | "GITHUB" | "INTERNATIONAL_DATA_CORPORATION" | "JIRA" | "MARIADB" | "MYSQL" | "ORACLE" | "POSTGRESQL" | "PRESTO" | "QBUSINESS" | "REDSHIFT" | "S3" | "S3_TABLES" | "S3_KNOWLEDGE_BASE" | "SALESFORCE" | "SERVICENOW" | "SNOWFLAKE" | "SPARK" | "SPICE" | "SQLSERVER" | "TERADATA" | "TIMESTREAM" | "TWITTER" | "BIGQUERY" | "GOOGLE_ANALYTICS" | "TRINO" | "STARBURST" | "MONGO" | "MONGO_ATLAS" | "DOCUMENTDB" | "APPFLOW" | "IMPALA" | "GLUE" | "GOOGLE_DRIVE" | "CONFLUENCE" | "SHAREPOINT" | "ONE_DRIVE" | "WEB_CRAWLER";
395
395
  /**
396
396
  * Type definition for `AWS::QuickSight::DataSource.IdentityCenterConfiguration`.
397
397
  * <p>The parameters for an IAM Identity Center configuration.</p>
@@ -0,0 +1,71 @@
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::SES::MultiRegionEndpoint
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
6
+ */
7
+ export type SESMultiRegionEndpointProperties = {
8
+ /**
9
+ * Contains details of a multi-region endpoint (global-endpoint) being created.
10
+ */
11
+ Details: Details;
12
+ /**
13
+ * The name of the multi-region endpoint (global-endpoint).
14
+ * @minLength `1`
15
+ * @maxLength `64`
16
+ * @pattern `^[\w\-_]+$`
17
+ */
18
+ EndpointName: string;
19
+ /**
20
+ * An Array of objects that define the tags (keys and values) to associate with the multi-region endpoint (global-endpoint).
21
+ * @minLength `0`
22
+ * @maxLength `50`
23
+ */
24
+ Tags?: Tag[];
25
+ };
26
+ /**
27
+ * Type definition for `AWS::SES::MultiRegionEndpoint.Details`.
28
+ * Contains details of a multi-region endpoint (global-endpoint) being created.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-details.html}
30
+ */
31
+ export type Details = {
32
+ /**
33
+ * A list of route configuration details. Must contain exactly one route configuration
34
+ * @minLength `1`
35
+ * @maxLength `1`
36
+ */
37
+ RouteDetails: {
38
+ /**
39
+ * The name of an AWS-Region to be a secondary region for the multi-region endpoint (global-endpoint)
40
+ */
41
+ Region: string;
42
+ }[];
43
+ };
44
+ /**
45
+ * Type definition for `AWS::SES::MultiRegionEndpoint.Tag`.
46
+ * An object that defines the tags that are associated with a resource.
47
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-multiregionendpoint-tag.html}
48
+ */
49
+ export type Tag = {
50
+ /**
51
+ * One part of a key-value pair that defines a tag.
52
+ * @minLength `1`
53
+ * @maxLength `128`
54
+ */
55
+ Key: string;
56
+ /**
57
+ * The optional part of a key-value pair that defines a tag.
58
+ * @minLength `0`
59
+ * @maxLength `256`
60
+ */
61
+ Value: string;
62
+ };
63
+ /**
64
+ * Resource Type definition for AWS::SES::MultiRegionEndpoint
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
66
+ */
67
+ export declare class SESMultiRegionEndpoint extends $Resource<"AWS::SES::MultiRegionEndpoint", SESMultiRegionEndpointProperties, Record<string, never>> {
68
+ static readonly Type = "AWS::SES::MultiRegionEndpoint";
69
+ constructor(logicalId: string, properties: SESMultiRegionEndpointProperties, options?: $ResourceOptions);
70
+ }
71
+ //# sourceMappingURL=AWS-SES-MultiRegionEndpoint.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::SES::MultiRegionEndpoint
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-multiregionendpoint.html}
5
+ */
6
+ export class SESMultiRegionEndpoint extends $Resource {
7
+ static Type = "AWS::SES::MultiRegionEndpoint";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESMultiRegionEndpoint.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-MultiRegionEndpoint.js.map
@@ -1,22 +1,61 @@
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::ServiceCatalog::CloudFormationProduct
4
+ * Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
6
6
  */
7
7
  export type ServiceCatalogCloudFormationProductProperties = {
8
+ /**
9
+ * The language code.
10
+ */
8
11
  AcceptLanguage?: string;
12
+ /**
13
+ * The description of the product.
14
+ */
9
15
  Description?: string;
16
+ /**
17
+ * The distributor of the product.
18
+ */
10
19
  Distributor?: string;
20
+ /**
21
+ * The name of the product.
22
+ */
11
23
  Name: string;
24
+ /**
25
+ * The owner of the product.
26
+ */
12
27
  Owner: string;
13
- ProductType?: string;
28
+ /**
29
+ * The type of product.
30
+ */
31
+ ProductType?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL";
32
+ /**
33
+ * The configuration of the provisioning artifact (also known as a version).
34
+ */
14
35
  ProvisioningArtifactParameters?: ProvisioningArtifactProperties[];
36
+ /**
37
+ * This property is turned off by default. If turned off, you can update provisioning artifacts or product attributes (such as description, distributor, name, owner, and more) and the associated provisioning artifacts will retain the same unique identifier. Provisioning artifacts are matched within the CloudFormationProduct resource, and only those that have been updated will be changed. Provisioning artifacts are matched by a combinaton of provisioning artifact template URL and name.
38
+ */
15
39
  ReplaceProvisioningArtifacts?: boolean;
40
+ /**
41
+ * A top level ProductViewDetail response containing details about the product's connection. AWS Service Catalog returns this field for the CreateProduct, UpdateProduct, DescribeProductAsAdmin, and SearchProductAsAdmin APIs. This response contains the same fields as the ConnectionParameters request, with the addition of the LastSync response.
42
+ */
16
43
  SourceConnection?: SourceConnection;
44
+ /**
45
+ * The support information about the product.
46
+ */
17
47
  SupportDescription?: string;
48
+ /**
49
+ * The contact email for product support.
50
+ */
18
51
  SupportEmail?: string;
52
+ /**
53
+ * The contact URL for product support.
54
+ */
19
55
  SupportUrl?: string;
56
+ /**
57
+ * One or more tags.
58
+ */
20
59
  Tags?: Tag[];
21
60
  };
22
61
  /**
@@ -24,9 +63,21 @@ export type ServiceCatalogCloudFormationProductProperties = {
24
63
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html#aws-resource-servicecatalog-cloudformationproduct-return-values}
25
64
  */
26
65
  export type ServiceCatalogCloudFormationProductAttributes = {
66
+ /**
67
+ * The ID of the product, such as prod-tsjbmal34qvek
68
+ */
27
69
  Id: string;
70
+ /**
71
+ * The name of the product.
72
+ */
28
73
  ProductName: string;
74
+ /**
75
+ * The IDs of the provisioning artifacts
76
+ */
29
77
  ProvisioningArtifactIds: string;
78
+ /**
79
+ * The names of the provisioning artifacts
80
+ */
30
81
  ProvisioningArtifactNames: string;
31
82
  };
32
83
  /**
@@ -34,35 +85,78 @@ export type ServiceCatalogCloudFormationProductAttributes = {
34
85
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-codestarparameters.html}
35
86
  */
36
87
  export type CodeStarParameters = {
88
+ /**
89
+ * The absolute path where the artifact resides within the repo and branch, formatted as "folder/file.json".
90
+ */
37
91
  ArtifactPath: string;
92
+ /**
93
+ * The specific branch where the artifact resides.
94
+ */
38
95
  Branch: string;
96
+ /**
97
+ * The CodeStar ARN, which is the connection between AWS Service Catalog and the external repository.
98
+
99
+
100
+ */
39
101
  ConnectionArn: string;
102
+ /**
103
+ * The specific repository where the product's artifact-to-be-synced resides, formatted as "Account/Repo."
104
+ */
40
105
  Repository: string;
41
106
  };
42
- /**
43
- * Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ConnectionParameters`.
44
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-connectionparameters.html}
45
- */
46
- export type ConnectionParameters = {
47
- CodeStar?: CodeStarParameters;
48
- };
49
107
  /**
50
108
  * Type definition for `AWS::ServiceCatalog::CloudFormationProduct.ProvisioningArtifactProperties`.
51
109
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-provisioningartifactproperties.html}
52
110
  */
53
111
  export type ProvisioningArtifactProperties = {
112
+ /**
113
+ * The description of the provisioning artifact, including how it differs from the previous provisioning artifact.
114
+ */
54
115
  Description?: string;
116
+ /**
117
+ * If set to true, AWS Service Catalog stops validating the specified provisioning artifact even if it is invalid.
118
+ */
55
119
  DisableTemplateValidation?: boolean;
56
- Info: Record<string, any>;
120
+ /**
121
+ * Specify the template source with one of the following options, but not both. Keys accepted: [ LoadTemplateFromURL, ImportFromPhysicalId ] The URL of the AWS CloudFormation template in Amazon S3 in JSON format. Specify the URL in JSON format as follows:
122
+
123
+ "LoadTemplateFromURL": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/..."
124
+
125
+ ImportFromPhysicalId: The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn. Specify the physical id in JSON format as follows: ImportFromPhysicalId: "arn:aws:cloudformation:[us-east-1]:[accountId]:stack/[StackName]/[resourceId]
126
+ */
127
+ Info: {
128
+ /**
129
+ * The physical id of the resource that contains the template. Currently only supports AWS CloudFormation stack arn
130
+ */
131
+ ImportFromPhysicalId?: string;
132
+ /**
133
+ * The URL of the AWS CloudFormation template in Amazon S3 in JSON format.
134
+ */
135
+ LoadTemplateFromURL?: string;
136
+ };
137
+ /**
138
+ * The name of the provisioning artifact (for example, v1 v2beta). No spaces are allowed.
139
+ */
57
140
  Name?: string;
58
- Type?: string;
141
+ /**
142
+ * The type of provisioning artifact. Valid values are CLOUD_FORMATION_TEMPLATE, TERRAFORM_OPEN_SOURCE, TERRAFORM_CLOUD, EXTERNAL
143
+ */
144
+ Type?: "CLOUD_FORMATION_TEMPLATE" | "MARKETPLACE_AMI" | "MARKETPLACE_CAR" | "TERRAFORM_OPEN_SOURCE" | "TERRAFORM_CLOUD" | "EXTERNAL";
59
145
  };
60
146
  /**
61
147
  * Type definition for `AWS::ServiceCatalog::CloudFormationProduct.SourceConnection`.
62
148
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-sourceconnection.html}
63
149
  */
64
150
  export type SourceConnection = {
65
- ConnectionParameters: ConnectionParameters;
151
+ /**
152
+ * The connection details based on the connection Type.
153
+ */
154
+ ConnectionParameters: {
155
+ CodeStar?: CodeStarParameters;
156
+ };
157
+ /**
158
+ * The only supported SourceConnection type is Codestar.
159
+ */
66
160
  Type: string;
67
161
  };
68
162
  /**
@@ -70,11 +164,17 @@ export type SourceConnection = {
70
164
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-servicecatalog-cloudformationproduct-tag.html}
71
165
  */
72
166
  export type Tag = {
167
+ /**
168
+ * The tag key.
169
+ */
73
170
  Key: string;
171
+ /**
172
+ * The tag value
173
+ */
74
174
  Value: string;
75
175
  };
76
176
  /**
77
- * Resource Type definition for AWS::ServiceCatalog::CloudFormationProduct
177
+ * Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
78
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
79
179
  */
80
180
  export declare class ServiceCatalogCloudFormationProduct extends $Resource<"AWS::ServiceCatalog::CloudFormationProduct", ServiceCatalogCloudFormationProductProperties, ServiceCatalogCloudFormationProductAttributes> {
@@ -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::ServiceCatalog::CloudFormationProduct
3
+ * Resource type definition for AWS::ServiceCatalog::CloudFormationProduct
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-cloudformationproduct.html}
5
5
  */
6
6
  export class ServiceCatalogCloudFormationProduct extends $Resource {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.467",
3
+ "version": "0.1.469",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },