@awboost/cfn-resource-types 0.1.519 → 0.1.520

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.
@@ -21,6 +21,10 @@ export type DataZoneEnvironmentBlueprintConfigurationProperties = {
21
21
  * @pattern `^arn:aws[^:]*:iam::(aws|\d{12}):policy/[\w+=,.@-]*$`
22
22
  */
23
23
  EnvironmentRolePermissionBoundary?: string;
24
+ /**
25
+ * Region-agnostic environment blueprint parameters.
26
+ */
27
+ GlobalParameters?: Record<string, string>;
24
28
  /**
25
29
  * @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/‍*[a-zA-Z0-9+=,.@_-]+$`
26
30
  */
@@ -27,6 +27,7 @@ export type DataZoneProjectProfileProperties = {
27
27
  */
28
28
  Name: string;
29
29
  Status?: Status;
30
+ UseDefaultConfigurations?: boolean;
30
31
  };
31
32
  /**
32
33
  * Attribute type definition for `AWS::DataZone::ProjectProfile`.
@@ -0,0 +1,82 @@
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
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
6
+ */
7
+ export type DocDBGlobalClusterProperties = {
8
+ /**
9
+ * Indicates whether the global cluster has deletion protection enabled. The global cluster can't be deleted when deletion protection is enabled.
10
+ */
11
+ DeletionProtection?: boolean;
12
+ /**
13
+ * The database engine to use for this global cluster.
14
+ */
15
+ Engine?: "docdb";
16
+ /**
17
+ * The engine version to use for this global cluster.
18
+ */
19
+ EngineVersion?: string;
20
+ /**
21
+ * The cluster identifier of the global cluster.
22
+ * @minLength `1`
23
+ * @maxLength `63`
24
+ * @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
25
+ */
26
+ GlobalClusterIdentifier: string;
27
+ /**
28
+ * The Amazon Resource Name (ARN) to use as the primary cluster of the global cluster. You may also choose to instead specify the DBClusterIdentifier. If you provide a value for this parameter, don't specify values for the following settings because Amazon DocumentDB uses the values from the specified source DB cluster: Engine, EngineVersion, StorageEncrypted
29
+ */
30
+ SourceDBClusterIdentifier?: string;
31
+ /**
32
+ * Indicates whether the global cluster has storage encryption enabled.
33
+ */
34
+ StorageEncrypted?: boolean;
35
+ /**
36
+ * The tags to be assigned to the Amazon DocumentDB resource.
37
+ * @maxLength `50`
38
+ */
39
+ Tags?: Tag[];
40
+ };
41
+ /**
42
+ * Attribute type definition for `AWS::DocDB::GlobalCluster`.
43
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html#aws-resource-docdb-globalcluster-return-values}
44
+ */
45
+ export type DocDBGlobalClusterAttributes = {
46
+ /**
47
+ * The Amazon Resource Name (ARN) for the global cluster.
48
+ */
49
+ GlobalClusterArn: string;
50
+ /**
51
+ * The AWS Region-unique, immutable identifier for the global database cluster. This identifier is found in AWS CloudTrail log entries whenever the AWS KMS key for the DB cluster is accessed.
52
+ */
53
+ GlobalClusterResourceId: string;
54
+ };
55
+ /**
56
+ * Type definition for `AWS::DocDB::GlobalCluster.Tag`.
57
+ * A key-value pair to associate with an Amazon DocumentDB resource.
58
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-docdb-globalcluster-tag.html}
59
+ */
60
+ export type Tag = {
61
+ /**
62
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
63
+ * @minLength `1`
64
+ * @maxLength `128`
65
+ */
66
+ Key: string;
67
+ /**
68
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
69
+ * @minLength `0`
70
+ * @maxLength `256`
71
+ */
72
+ Value: string;
73
+ };
74
+ /**
75
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
77
+ */
78
+ export declare class DocDBGlobalCluster extends $Resource<"AWS::DocDB::GlobalCluster", DocDBGlobalClusterProperties, DocDBGlobalClusterAttributes> {
79
+ static readonly Type = "AWS::DocDB::GlobalCluster";
80
+ constructor(logicalId: string, properties: DocDBGlobalClusterProperties, options?: $ResourceOptions);
81
+ }
82
+ //# sourceMappingURL=AWS-DocDB-GlobalCluster.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * The AWS::DocDB::GlobalCluster resource represents an Amazon DocumentDB Global Cluster.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-globalcluster.html}
5
+ */
6
+ export class DocDBGlobalCluster extends $Resource {
7
+ static Type = "AWS::DocDB::GlobalCluster";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, DocDBGlobalCluster.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-DocDB-GlobalCluster.js.map
@@ -468,6 +468,12 @@ export type FilterConfiguration = {
468
468
  * <p>Optionally specify the clip start time for all of your manifest egress requests. When you include clip start time, note that you cannot use clip start time query parameters for this manifest's endpoint URL.</p>
469
469
  */
470
470
  ClipStartTime?: string;
471
+ /**
472
+ * <p>Optionally specify one or more DRM settings for all of your manifest egress requests. When you include a DRM setting, note that you cannot use an identical DRM setting query parameter for this manifest's endpoint URL.</p>
473
+ * @minLength `1`
474
+ * @maxLength `1024`
475
+ */
476
+ DrmSettings?: string;
471
477
  /**
472
478
  * <p>Optionally specify the end time for all of your manifest egress requests. When you include end time, note that you cannot use end time query parameters for this manifest's endpoint URL.</p>
473
479
  */
@@ -719,6 +725,13 @@ export type Segment = {
719
725
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-originendpoint-spekekeyprovider.html}
720
726
  */
721
727
  export type SpekeKeyProvider = {
728
+ /**
729
+ * <p>The ARN for the certificate that you imported to AWS Certificate Manager to add content key encryption to this endpoint. For this feature to work, your DRM key provider must support content key encryption.</p>
730
+ * @minLength `20`
731
+ * @maxLength `2048`
732
+ * @pattern `^arn:([^:\n]+):acm:([^:\n]+):([0-9]+):certificate/[a-zA-Z0-9-_]+$`
733
+ */
734
+ CertificateArn?: string;
722
735
  /**
723
736
  * <p>The DRM solution provider you're using to protect your content during distribution.</p>
724
737
  * @minLength `1`
@@ -376,7 +376,7 @@ export type ResourceSpec = {
376
376
  /**
377
377
  * The ARN of the image version created on the instance.
378
378
  * @maxLength `256`
379
- * @pattern `^arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])/‍*[0-9]+$`
379
+ * @pattern `^(arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])/‍*[0-9]+|None)`
380
380
  */
381
381
  SageMakerImageVersionArn?: string;
382
382
  };
@@ -495,7 +495,7 @@ export type UserSettings = {
495
495
  CodeEditorAppSettings?: CodeEditorAppSettings;
496
496
  /**
497
497
  * @minLength `0`
498
- * @maxLength `2`
498
+ * @maxLength `10`
499
499
  */
500
500
  CustomFileSystemConfigs?: CustomFileSystemConfig[];
501
501
  CustomPosixUserConfig?: CustomPosixUserConfig;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.519",
3
+ "version": "0.1.520",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },