@awboost/cfn-resource-types 0.1.449 → 0.1.451
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.
- package/lib/AWS-DataZone-Domain.d.ts +1 -1
- package/lib/AWS-DataZone-EnvironmentBlueprintConfiguration.d.ts +1 -1
- package/lib/AWS-DataZone-ProjectProfile.d.ts +1 -1
- package/lib/AWS-ECS-Cluster.d.ts +1 -1
- package/lib/AWS-ECS-ClusterCapacityProviderAssociations.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +3 -1
- package/lib/AWS-ImageBuilder-Component.d.ts +21 -0
- package/lib/AWS-ImageBuilder-Image.d.ts +21 -0
- package/lib/AWS-ImageBuilder-Workflow.d.ts +21 -0
- package/lib/AWS-SSMQuickSetup-LifecycleAutomation.d.ts +60 -0
- package/lib/AWS-SSMQuickSetup-LifecycleAutomation.js +12 -0
- package/lib/AWS-SageMaker-App.d.ts +1 -1
- package/lib/AWS-SageMaker-Domain.d.ts +12 -2
- package/lib/AWS-SageMaker-UserProfile.d.ts +1 -1
- package/lib/AWS-ServiceCatalog-LaunchNotificationConstraint.d.ts +3 -0
- package/lib/AWS-ServiceCatalog-TagOptionAssociation.d.ts +9 -10
- package/package.json +1 -1
|
@@ -32,7 +32,7 @@ export type DataZoneDomainProperties = {
|
|
|
32
32
|
Name: string;
|
|
33
33
|
/**
|
|
34
34
|
* The service role of the domain that is created.
|
|
35
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
35
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
36
36
|
*/
|
|
37
37
|
ServiceRole?: string;
|
|
38
38
|
/**
|
|
@@ -27,7 +27,7 @@ export type DataZoneEnvironmentBlueprintConfigurationProperties = {
|
|
|
27
27
|
ManageAccessRoleArn?: string;
|
|
28
28
|
ProvisioningConfigurations?: ProvisioningConfiguration[];
|
|
29
29
|
/**
|
|
30
|
-
* @pattern `^arn:aws[^:]*:iam::\d{12}:(
|
|
30
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:role(/[a-zA-Z0-9+=,.@_-]+)/*[a-zA-Z0-9+=,.@_-]+$`
|
|
31
31
|
*/
|
|
32
32
|
ProvisioningRoleArn?: string;
|
|
33
33
|
RegionalParameters?: RegionalParameter[];
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -118,7 +118,7 @@ export type ClusterConfiguration = {
|
|
|
118
118
|
*/
|
|
119
119
|
export type ClusterSettings = {
|
|
120
120
|
/**
|
|
121
|
-
* The name of the cluster setting. The value is ``containerInsights
|
|
121
|
+
* The name of the cluster setting. The value is ``containerInsights``.
|
|
122
122
|
*/
|
|
123
123
|
Name?: string;
|
|
124
124
|
/**
|
|
@@ -9,7 +9,7 @@ export type ECSClusterCapacityProviderAssociationsProperties = {
|
|
|
9
9
|
/**
|
|
10
10
|
* List of capacity providers to associate with the cluster
|
|
11
11
|
*/
|
|
12
|
-
CapacityProviders
|
|
12
|
+
CapacityProviders?: CapacityProvider[];
|
|
13
13
|
/**
|
|
14
14
|
* The name of the cluster
|
|
15
15
|
* @minLength `1`
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -328,6 +328,7 @@ export type DeploymentConfiguration = {
|
|
|
328
328
|
* @max `1440`
|
|
329
329
|
*/
|
|
330
330
|
BakeTimeInMinutes?: number;
|
|
331
|
+
CanaryConfiguration?: any;
|
|
331
332
|
/**
|
|
332
333
|
* The deployment circuit breaker can only be used for services using the rolling update (``ECS``) deployment type.
|
|
333
334
|
The *deployment circuit breaker* determines whether a service deployment will fail if the service can't reach a steady state. If you use the deployment circuit breaker, a service deployment will transition to a failed state and stop launching new tasks. If you use the rollback option, when a service deployment fails, the service is rolled back to the last deployment that completed successfully. For more information, see [Rolling update](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/deployment-type-ecs.html) in the *Amazon Elastic Container Service Developer Guide*
|
|
@@ -337,6 +338,7 @@ export type DeploymentConfiguration = {
|
|
|
337
338
|
* An array of deployment lifecycle hook objects to run custom logic at specific stages of the deployment lifecycle.
|
|
338
339
|
*/
|
|
339
340
|
LifecycleHooks?: DeploymentLifecycleHook[];
|
|
341
|
+
LinearConfiguration?: any;
|
|
340
342
|
/**
|
|
341
343
|
* If a service is using the rolling update (``ECS``) deployment type, the ``maximumPercent`` parameter represents an upper limit on the number of your service's tasks that are allowed in the ``RUNNING`` or ``PENDING`` state during a deployment, as a percentage of the ``desiredCount`` (rounded down to the nearest integer). This parameter enables you to define the deployment batch size. For example, if your service is using the ``REPLICA`` service scheduler and has a ``desiredCount`` of four tasks and a ``maximumPercent`` value of 200%, the scheduler may start four new tasks before stopping the four older tasks (provided that the cluster resources required to do this are available). The default ``maximumPercent`` value for a service using the ``REPLICA`` service scheduler is 200%.
|
|
342
344
|
The Amazon ECS scheduler uses this parameter to replace unhealthy tasks by starting replacement tasks first and then stopping the unhealthy tasks, as long as cluster resources for starting replacement tasks are available. For more information about how the scheduler replaces unhealthy tasks, see [Amazon ECS services](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs_services.html).
|
|
@@ -369,7 +371,7 @@ export type DeploymentConfiguration = {
|
|
|
369
371
|
+ ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
|
|
370
372
|
+ ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
|
|
371
373
|
*/
|
|
372
|
-
Strategy?: "ROLLING" | "BLUE_GREEN";
|
|
374
|
+
Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
|
|
373
375
|
};
|
|
374
376
|
/**
|
|
375
377
|
* Type definition for `AWS::ECS::Service.DeploymentController`.
|
|
@@ -61,6 +61,27 @@ export type ImageBuilderComponentAttributes = {
|
|
|
61
61
|
* The encryption status of the component.
|
|
62
62
|
*/
|
|
63
63
|
Encrypted: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* The latest version references of the component.
|
|
66
|
+
*/
|
|
67
|
+
LatestVersion: {
|
|
68
|
+
/**
|
|
69
|
+
* The latest version ARN of the created component.
|
|
70
|
+
*/
|
|
71
|
+
Arn: string;
|
|
72
|
+
/**
|
|
73
|
+
* The latest version ARN of the created component, with the same major version.
|
|
74
|
+
*/
|
|
75
|
+
Major: string;
|
|
76
|
+
/**
|
|
77
|
+
* The latest version ARN of the created component, with the same minor version.
|
|
78
|
+
*/
|
|
79
|
+
Minor: string;
|
|
80
|
+
/**
|
|
81
|
+
* The latest version ARN of the created component, with the same patch version.
|
|
82
|
+
*/
|
|
83
|
+
Patch: string;
|
|
84
|
+
};
|
|
64
85
|
/**
|
|
65
86
|
* The type of the component denotes whether the component is used to build the image or only to test it.
|
|
66
87
|
*/
|
|
@@ -67,6 +67,27 @@ export type ImageBuilderImageAttributes = {
|
|
|
67
67
|
* URI for containers created in current Region with default ECR image tag
|
|
68
68
|
*/
|
|
69
69
|
ImageUri: string;
|
|
70
|
+
/**
|
|
71
|
+
* The latest version references of the image.
|
|
72
|
+
*/
|
|
73
|
+
LatestVersion: {
|
|
74
|
+
/**
|
|
75
|
+
* The latest version ARN of the created image.
|
|
76
|
+
*/
|
|
77
|
+
Arn: string;
|
|
78
|
+
/**
|
|
79
|
+
* The latest version ARN of the created image, with the same major version.
|
|
80
|
+
*/
|
|
81
|
+
Major: string;
|
|
82
|
+
/**
|
|
83
|
+
* The latest version ARN of the created image, with the same minor version.
|
|
84
|
+
*/
|
|
85
|
+
Minor: string;
|
|
86
|
+
/**
|
|
87
|
+
* The latest version ARN of the created image, with the same patch version.
|
|
88
|
+
*/
|
|
89
|
+
Patch: string;
|
|
90
|
+
};
|
|
70
91
|
/**
|
|
71
92
|
* The name of the image.
|
|
72
93
|
*/
|
|
@@ -53,6 +53,27 @@ export type ImageBuilderWorkflowAttributes = {
|
|
|
53
53
|
* The Amazon Resource Name (ARN) of the workflow.
|
|
54
54
|
*/
|
|
55
55
|
Arn: string;
|
|
56
|
+
/**
|
|
57
|
+
* The latest version references of the workflow.
|
|
58
|
+
*/
|
|
59
|
+
LatestVersion: {
|
|
60
|
+
/**
|
|
61
|
+
* The latest version ARN of the created workflow.
|
|
62
|
+
*/
|
|
63
|
+
Arn: string;
|
|
64
|
+
/**
|
|
65
|
+
* The latest version ARN of the created workflow, with the same major version.
|
|
66
|
+
*/
|
|
67
|
+
Major: string;
|
|
68
|
+
/**
|
|
69
|
+
* The latest version ARN of the created workflow, with the same minor version.
|
|
70
|
+
*/
|
|
71
|
+
Minor: string;
|
|
72
|
+
/**
|
|
73
|
+
* The latest version ARN of the created workflow, with the same patch version.
|
|
74
|
+
*/
|
|
75
|
+
Patch: string;
|
|
76
|
+
};
|
|
56
77
|
};
|
|
57
78
|
/**
|
|
58
79
|
* Resource schema for AWS::ImageBuilder::Workflow
|
|
@@ -0,0 +1,60 @@
|
|
|
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::SSMQuickSetup::LifecycleAutomation that executes SSM Automation documents in response to CloudFormation lifecycle events.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-lifecycleautomation.html}
|
|
6
|
+
*/
|
|
7
|
+
export type SSMQuickSetupLifecycleAutomationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the Automation document to execute
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `500`
|
|
12
|
+
* @pattern `^\S+$`
|
|
13
|
+
*/
|
|
14
|
+
AutomationDocument: string;
|
|
15
|
+
/**
|
|
16
|
+
* Parameters to be passed to the Automation Document
|
|
17
|
+
*/
|
|
18
|
+
AutomationParameters: AutomationParameters;
|
|
19
|
+
/**
|
|
20
|
+
* A unique identifier used for generating a unique logical ID for the custom resource
|
|
21
|
+
* @minLength `1`
|
|
22
|
+
* @maxLength `64`
|
|
23
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
|
24
|
+
*/
|
|
25
|
+
ResourceKey: string;
|
|
26
|
+
Tags?: TagsMap;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::SSMQuickSetup::LifecycleAutomation`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-lifecycleautomation.html#aws-resource-ssmquicksetup-lifecycleautomation-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type SSMQuickSetupLifecycleAutomationAttributes = {
|
|
33
|
+
/**
|
|
34
|
+
* The id from the association that is returned when creating the association
|
|
35
|
+
* @minLength `1`
|
|
36
|
+
* @maxLength `64`
|
|
37
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
|
38
|
+
*/
|
|
39
|
+
AssociationId: string;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `AWS::SSMQuickSetup::LifecycleAutomation.AutomationParameters`.
|
|
43
|
+
* Parameters to be passed to the Automation Document
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmquicksetup-lifecycleautomation-automationparameters.html}
|
|
45
|
+
*/
|
|
46
|
+
export type AutomationParameters = Record<string, string[]>;
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::SSMQuickSetup::LifecycleAutomation.TagsMap`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmquicksetup-lifecycleautomation-tagsmap.html}
|
|
50
|
+
*/
|
|
51
|
+
export type TagsMap = Record<string, string>;
|
|
52
|
+
/**
|
|
53
|
+
* Resource Type definition for AWS::SSMQuickSetup::LifecycleAutomation that executes SSM Automation documents in response to CloudFormation lifecycle events.
|
|
54
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-lifecycleautomation.html}
|
|
55
|
+
*/
|
|
56
|
+
export declare class SSMQuickSetupLifecycleAutomation extends $Resource<"AWS::SSMQuickSetup::LifecycleAutomation", SSMQuickSetupLifecycleAutomationProperties, SSMQuickSetupLifecycleAutomationAttributes> {
|
|
57
|
+
static readonly Type = "AWS::SSMQuickSetup::LifecycleAutomation";
|
|
58
|
+
constructor(logicalId: string, properties: SSMQuickSetupLifecycleAutomationProperties, options?: $ResourceOptions);
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=AWS-SSMQuickSetup-LifecycleAutomation.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::SSMQuickSetup::LifecycleAutomation that executes SSM Automation documents in response to CloudFormation lifecycle events.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-lifecycleautomation.html}
|
|
5
|
+
*/
|
|
6
|
+
export class SSMQuickSetupLifecycleAutomation extends $Resource {
|
|
7
|
+
static Type = "AWS::SSMQuickSetup::LifecycleAutomation";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, SSMQuickSetupLifecycleAutomation.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-SSMQuickSetup-LifecycleAutomation.js.map
|
|
@@ -71,7 +71,7 @@ export type ResourceSpec = {
|
|
|
71
71
|
/**
|
|
72
72
|
* The instance type that the image version runs on.
|
|
73
73
|
*/
|
|
74
|
-
InstanceType?: "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.
|
|
74
|
+
InstanceType?: "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
75
75
|
/**
|
|
76
76
|
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
77
77
|
* @maxLength `256`
|
|
@@ -113,7 +113,7 @@ export type SageMakerDomainAttributes = {
|
|
|
113
113
|
* The instance type that the image version runs on.
|
|
114
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-appinstancetype.html}
|
|
115
115
|
*/
|
|
116
|
-
export type AppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
116
|
+
export type AppInstanceType = "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
117
117
|
/**
|
|
118
118
|
* Type definition for `AWS::SageMaker::Domain.AppLifecycleManagement`.
|
|
119
119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-applifecyclemanagement.html}
|
|
@@ -323,6 +323,10 @@ export type DomainSettings = {
|
|
|
323
323
|
* The configuration for attaching a SageMaker user profile name to the execution role as a sts:SourceIdentity key.
|
|
324
324
|
*/
|
|
325
325
|
ExecutionRoleIdentityConfig?: "USER_PROFILE_NAME" | "DISABLED";
|
|
326
|
+
/**
|
|
327
|
+
* A setting to indicate if IPv6 routing should be enabled along with IPv4 or not
|
|
328
|
+
*/
|
|
329
|
+
IpAddressType?: IpAddressType;
|
|
326
330
|
/**
|
|
327
331
|
* A collection of settings that update the current configuration for the RStudioServerPro Domain-level app.
|
|
328
332
|
*/
|
|
@@ -416,6 +420,12 @@ export type IdleSettings = {
|
|
|
416
420
|
*/
|
|
417
421
|
MinIdleTimeoutInMinutes?: number;
|
|
418
422
|
};
|
|
423
|
+
/**
|
|
424
|
+
* Type definition for `AWS::SageMaker::Domain.IpAddressType`.
|
|
425
|
+
* A setting to indicate if IPv6 routing should be enabled along with IPv4 or not
|
|
426
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-domain-ipaddresstype.html}
|
|
427
|
+
*/
|
|
428
|
+
export type IpAddressType = "IPV4" | "DUALSTACK";
|
|
419
429
|
/**
|
|
420
430
|
* Type definition for `AWS::SageMaker::Domain.JupyterLabAppSettings`.
|
|
421
431
|
* The JupyterLab app settings.
|
|
@@ -508,7 +518,7 @@ export type ResourceSpec = {
|
|
|
508
518
|
/**
|
|
509
519
|
* The instance type that the image version runs on.
|
|
510
520
|
*/
|
|
511
|
-
InstanceType?:
|
|
521
|
+
InstanceType?: AppInstanceType;
|
|
512
522
|
/**
|
|
513
523
|
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
514
524
|
* @maxLength `256`
|
|
@@ -360,7 +360,7 @@ export type ResourceSpec = {
|
|
|
360
360
|
/**
|
|
361
361
|
* The instance type that the image version runs on.
|
|
362
362
|
*/
|
|
363
|
-
InstanceType?: "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.
|
|
363
|
+
InstanceType?: "system" | "ml.t3.micro" | "ml.t3.small" | "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.8xlarge" | "ml.m5.12xlarge" | "ml.m5.16xlarge" | "ml.m5.24xlarge" | "ml.m5d.large" | "ml.m5d.xlarge" | "ml.m5d.2xlarge" | "ml.m5d.4xlarge" | "ml.m5d.8xlarge" | "ml.m5d.12xlarge" | "ml.m5d.16xlarge" | "ml.m5d.24xlarge" | "ml.c5.large" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.12xlarge" | "ml.c5.18xlarge" | "ml.c5.24xlarge" | "ml.p3.2xlarge" | "ml.p3.8xlarge" | "ml.p3.16xlarge" | "ml.p3dn.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.12xlarge" | "ml.g5.16xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.geospatial.interactive" | "ml.p4d.24xlarge" | "ml.p4de.24xlarge" | "ml.trn1.2xlarge" | "ml.trn1.32xlarge" | "ml.trn1n.32xlarge" | "ml.p5.48xlarge" | "ml.p5e.48xlarge" | "ml.p5en.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c6i.large" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r6i.large" | "ml.r6i.xlarge" | "ml.r6i.2xlarge" | "ml.r6i.4xlarge" | "ml.r6i.8xlarge" | "ml.r6i.12xlarge" | "ml.r6i.16xlarge" | "ml.r6i.24xlarge" | "ml.r6i.32xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge" | "ml.m6id.large" | "ml.m6id.xlarge" | "ml.m6id.2xlarge" | "ml.m6id.4xlarge" | "ml.m6id.8xlarge" | "ml.m6id.12xlarge" | "ml.m6id.16xlarge" | "ml.m6id.24xlarge" | "ml.m6id.32xlarge" | "ml.c6id.large" | "ml.c6id.xlarge" | "ml.c6id.2xlarge" | "ml.c6id.4xlarge" | "ml.c6id.8xlarge" | "ml.c6id.12xlarge" | "ml.c6id.16xlarge" | "ml.c6id.24xlarge" | "ml.c6id.32xlarge" | "ml.r6id.large" | "ml.r6id.xlarge" | "ml.r6id.2xlarge" | "ml.r6id.4xlarge" | "ml.r6id.8xlarge" | "ml.r6id.12xlarge" | "ml.r6id.16xlarge" | "ml.r6id.24xlarge" | "ml.r6id.32xlarge";
|
|
364
364
|
/**
|
|
365
365
|
* The Amazon Resource Name (ARN) of the Lifecycle Configuration to attach to the Resource.
|
|
366
366
|
* @maxLength `256`
|
|
@@ -16,6 +16,9 @@ export type ServiceCatalogLaunchNotificationConstraintProperties = {
|
|
|
16
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#aws-resource-servicecatalog-launchnotificationconstraint-return-values}
|
|
17
17
|
*/
|
|
18
18
|
export type ServiceCatalogLaunchNotificationConstraintAttributes = {
|
|
19
|
+
/**
|
|
20
|
+
* Unique identifier for the constraint
|
|
21
|
+
*/
|
|
19
22
|
Id: string;
|
|
20
23
|
};
|
|
21
24
|
/**
|
|
@@ -5,21 +5,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ServiceCatalogTagOptionAssociationProperties = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
Id: string;
|
|
8
|
+
/**
|
|
9
|
+
* The CloudformationProduct or Portfolio identifier.
|
|
10
|
+
*/
|
|
11
|
+
ResourceId?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The TagOption identifier.
|
|
14
|
+
*/
|
|
15
|
+
TagOptionId?: string;
|
|
17
16
|
};
|
|
18
17
|
/**
|
|
19
18
|
* Resource Type definition for AWS::ServiceCatalog::TagOptionAssociation
|
|
20
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-tagoptionassociation.html}
|
|
21
20
|
*/
|
|
22
|
-
export declare class ServiceCatalogTagOptionAssociation extends $Resource<"AWS::ServiceCatalog::TagOptionAssociation", ServiceCatalogTagOptionAssociationProperties,
|
|
21
|
+
export declare class ServiceCatalogTagOptionAssociation extends $Resource<"AWS::ServiceCatalog::TagOptionAssociation", ServiceCatalogTagOptionAssociationProperties, Record<string, never>> {
|
|
23
22
|
static readonly Type = "AWS::ServiceCatalog::TagOptionAssociation";
|
|
24
23
|
constructor(logicalId: string, properties: ServiceCatalogTagOptionAssociationProperties, options?: $ResourceOptions);
|
|
25
24
|
}
|