@propulsionworks/cloudformation 0.1.19 → 0.1.20
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/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +716 -0
- package/out/exports/resources.generated/aws-batch-jobqueue.d.ts +72 -1
- package/out/exports/resources.generated/aws-batch-serviceenvironment.d.ts +66 -0
- package/out/exports/resources.generated/aws-cassandra-table.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +10 -2
- package/out/exports/resources.generated/aws-cognito-managedloginbranding.d.ts +7 -0
- package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +4 -0
- package/out/exports/resources.generated/aws-datazone-project.d.ts +9 -2
- package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +26 -2
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +0 -4
- package/out/exports/resources.generated/aws-ec2-ipam.d.ts +6 -1
- package/out/exports/resources.generated/aws-ec2-transitgatewayconnectpeer.d.ts +73 -0
- package/out/exports/resources.generated/aws-ecr-repository.d.ts +25 -1
- package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +23 -1
- package/out/exports/resources.generated/aws-entityresolution-idmappingworkflow.d.ts +12 -8
- package/out/exports/resources.generated/aws-entityresolution-idnamespace.d.ts +8 -8
- package/out/exports/resources.generated/aws-entityresolution-matchingworkflow.d.ts +45 -15
- package/out/exports/resources.generated/aws-glue-job.d.ts +1 -1
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +158 -0
- package/out/exports/resources.generated/aws-iotsitewise-gateway.d.ts +1 -1
- package/out/exports/resources.generated/aws-lambda-version.d.ts +1 -1
- package/out/exports/resources.generated/aws-lightsail-domain.d.ts +26 -11
- package/out/exports/resources.generated/aws-logs-destination.d.ts +6 -1
- package/out/exports/resources.generated/aws-logs-loggroup.d.ts +4 -0
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +3 -0
- package/out/exports/resources.generated/aws-mediapackagev2-channel.d.ts +7 -0
- package/out/exports/resources.generated/aws-mediapackagev2-originendpointpolicy.d.ts +23 -0
- package/out/exports/resources.generated/aws-opensearchserverless-securityconfig.d.ts +1 -1
- package/out/exports/resources.generated/aws-opsworkscm-server.d.ts +0 -2
- package/out/exports/resources.generated/aws-quicksight-topic.d.ts +15 -0
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +45 -0
- package/out/exports/resources.generated/aws-s3-accesspoint.d.ts +6 -1
- package/out/exports/resources.generated/aws-s3express-accesspoint.d.ts +5 -1
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +107 -1
- package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +5 -1
- package/out/exports/resources.generated/aws-sagemaker-processingjob.d.ts +608 -0
- package/out/exports/resources.generated/aws-sagemaker-space.d.ts +3 -0
- package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +4 -0
- package/out/exports/resources.generated/aws-ses-configurationset.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-dedicatedippool.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-emailidentity.d.ts +1 -1
- package/out/exports/resources.generated/aws-ssm-patchbaseline.d.ts +5 -1
- package/out/exports/resources.generated/aws-wisdom-messagetemplate.d.ts +2 -2
- package/package.json +1 -1
|
@@ -151,6 +151,7 @@ export type CustomFileSystemConfig = {
|
|
|
151
151
|
*/
|
|
152
152
|
FSxLustreFileSystemConfig?: FSxLustreFileSystemConfig | undefined;
|
|
153
153
|
/**
|
|
154
|
+
* Configuration settings for a custom Amazon S3 file system.
|
|
154
155
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-customfilesystemconfig.html#cfn-sagemaker-userprofile-customfilesystemconfig-s3filesystemconfig}
|
|
155
156
|
*/
|
|
156
157
|
S3FileSystemConfig?: S3FileSystemConfig | undefined;
|
|
@@ -465,16 +466,19 @@ export type ResourceSpec = {
|
|
|
465
466
|
SageMakerImageVersionArn?: string | undefined;
|
|
466
467
|
};
|
|
467
468
|
/**
|
|
469
|
+
* Configuration for the custom Amazon S3 file system.
|
|
468
470
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-s3filesystemconfig.html}
|
|
469
471
|
*/
|
|
470
472
|
export type S3FileSystemConfig = {
|
|
471
473
|
/**
|
|
474
|
+
* The file system path where the Amazon S3 storage location will be mounted within the Amazon SageMaker Studio environment.
|
|
472
475
|
* @minLength 0
|
|
473
476
|
* @maxLength 1024
|
|
474
477
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-s3filesystemconfig.html#cfn-sagemaker-userprofile-s3filesystemconfig-mountpath}
|
|
475
478
|
*/
|
|
476
479
|
MountPath?: string | undefined;
|
|
477
480
|
/**
|
|
481
|
+
* The Amazon S3 URI of the S3 file system configuration.
|
|
478
482
|
* @minLength 0
|
|
479
483
|
* @maxLength 1024
|
|
480
484
|
* @pattern (s3)://([^/]+)/?(.*)
|
|
@@ -65,7 +65,7 @@ export type SESConfigurationSetProps = {
|
|
|
65
65
|
*/
|
|
66
66
|
SuppressionOptions?: SuppressionOptions | undefined;
|
|
67
67
|
/**
|
|
68
|
-
*
|
|
68
|
+
* An array of objects that define the tags (keys and values) that are associated with the configuration set.
|
|
69
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html#cfn-ses-configurationset-tags}
|
|
70
70
|
*/
|
|
71
71
|
Tags?: Tag[] | undefined;
|
|
@@ -35,7 +35,7 @@ export type SESDedicatedIpPoolProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
ScalingMode?: string | undefined;
|
|
37
37
|
/**
|
|
38
|
-
*
|
|
38
|
+
* An object that defines the tags (keys and values) that you want to associate with the pool.
|
|
39
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.html#cfn-ses-dedicatedippool-tags}
|
|
40
40
|
*/
|
|
41
41
|
Tags?: Tag[] | undefined;
|
|
@@ -54,7 +54,7 @@ export type SESEmailIdentityProps = {
|
|
|
54
54
|
*/
|
|
55
55
|
MailFromAttributes?: MailFromAttributes | undefined;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* An array of objects that define the tags (keys and values) to associate with the email identity.
|
|
58
58
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-emailidentity.html#cfn-ses-emailidentity-tags}
|
|
59
59
|
*/
|
|
60
60
|
Tags?: Tag[] | undefined;
|
|
@@ -38,7 +38,11 @@ export type SSMPatchBaselineProps = {
|
|
|
38
38
|
*/
|
|
39
39
|
ApprovedPatchesEnableNonSecurity?: boolean | undefined;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* Indicates the status you want to assign to security patches that are available but not approved because they don't meet the installation criteria specified in the patch baseline.
|
|
42
|
+
*
|
|
43
|
+
* Example scenario: Security patches that you might want installed can be skipped if you have specified a long period to wait after a patch is released before installation. If an update to the patch is released during your specified waiting period, the waiting period for installing the patch starts over. If the waiting period is too long, multiple versions of the patch could be released but never installed.
|
|
44
|
+
*
|
|
45
|
+
* Supported for Windows Server managed nodes only.
|
|
42
46
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-patchbaseline.html#cfn-ssm-patchbaseline-availablesecurityupdatescompliancestatus}
|
|
43
47
|
*/
|
|
44
48
|
AvailableSecurityUpdatesComplianceStatus?: "NON_COMPLIANT" | "COMPLIANT" | undefined;
|
|
@@ -51,7 +51,7 @@ export type WisdomMessageTemplateProps = {
|
|
|
51
51
|
*/
|
|
52
52
|
Language?: string | undefined;
|
|
53
53
|
/**
|
|
54
|
-
* List of message template attachments
|
|
54
|
+
* List of message template attachments.
|
|
55
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-wisdom-messagetemplate.html#cfn-wisdom-messagetemplate-messagetemplateattachments}
|
|
56
56
|
*/
|
|
57
57
|
MessageTemplateAttachments?: MessageTemplateAttachment[] | undefined;
|
|
@@ -650,7 +650,7 @@ export type MessageTemplateAttachment = {
|
|
|
650
650
|
*/
|
|
651
651
|
AttachmentName: string;
|
|
652
652
|
/**
|
|
653
|
-
* The S3 Presigned URL for the attachment file. When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI (https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html).
|
|
653
|
+
* The S3 Presigned URL for the attachment file. When generating the PreSignedUrl, please ensure that the expires-in time is set to 30 minutes. The URL can be generated through the AWS Console or through the AWS CLI. For more information, see [Sharing objects with presigned URLs](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ShareObjectPreSignedURL.html) .
|
|
654
654
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-messagetemplate-messagetemplateattachment.html#cfn-wisdom-messagetemplate-messagetemplateattachment-s3presignedurl}
|
|
655
655
|
*/
|
|
656
656
|
S3PresignedUrl: string;
|