@awboost/cfn-resource-types 0.1.337 → 0.1.338
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-EnvironmentBlueprintConfiguration.d.ts +27 -0
- package/lib/AWS-DataZone-Project.d.ts +52 -0
- package/lib/AWS-ECS-Service.d.ts +7 -4
- package/lib/AWS-MPA-ApprovalTeam.d.ts +95 -0
- package/lib/AWS-MPA-ApprovalTeam.js +12 -0
- package/lib/AWS-MPA-IdentitySource.d.ts +68 -0
- package/lib/AWS-MPA-IdentitySource.js +12 -0
- package/lib/AWS-Synthetics-Canary.d.ts +18 -0
- package/package.json +1 -1
|
@@ -17,10 +17,15 @@ export type DataZoneEnvironmentBlueprintConfigurationProperties = {
|
|
|
17
17
|
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
18
18
|
*/
|
|
19
19
|
EnvironmentBlueprintIdentifier: string;
|
|
20
|
+
/**
|
|
21
|
+
* @pattern `^arn:aws[^:]*:iam::(aws|\d{12}):policy/[\w+=,.@-]*$`
|
|
22
|
+
*/
|
|
23
|
+
EnvironmentRolePermissionBoundary?: string;
|
|
20
24
|
/**
|
|
21
25
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
22
26
|
*/
|
|
23
27
|
ManageAccessRoleArn?: string;
|
|
28
|
+
ProvisioningConfigurations?: ProvisioningConfiguration[];
|
|
24
29
|
/**
|
|
25
30
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
26
31
|
*/
|
|
@@ -43,11 +48,33 @@ export type DataZoneEnvironmentBlueprintConfigurationAttributes = {
|
|
|
43
48
|
EnvironmentBlueprintId: string;
|
|
44
49
|
UpdatedAt: string;
|
|
45
50
|
};
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.LakeFormationConfiguration`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-lakeformationconfiguration.html}
|
|
54
|
+
*/
|
|
55
|
+
export type LakeFormationConfiguration = {
|
|
56
|
+
/**
|
|
57
|
+
* @minLength `0`
|
|
58
|
+
* @maxLength `20`
|
|
59
|
+
*/
|
|
60
|
+
LocationRegistrationExcludeS3Locations?: string[];
|
|
61
|
+
/**
|
|
62
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
63
|
+
*/
|
|
64
|
+
LocationRegistrationRole?: string;
|
|
65
|
+
};
|
|
46
66
|
/**
|
|
47
67
|
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.Parameter`.
|
|
48
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-parameter.html}
|
|
49
69
|
*/
|
|
50
70
|
export type Parameter = Record<string, string>;
|
|
71
|
+
/**
|
|
72
|
+
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.ProvisioningConfiguration`.
|
|
73
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-provisioningconfiguration.html}
|
|
74
|
+
*/
|
|
75
|
+
export type ProvisioningConfiguration = {
|
|
76
|
+
LakeFormationConfiguration: LakeFormationConfiguration;
|
|
77
|
+
};
|
|
51
78
|
/**
|
|
52
79
|
* Type definition for `AWS::DataZone::EnvironmentBlueprintConfiguration.RegionalParameter`.
|
|
53
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentblueprintconfiguration-regionalparameter.html}
|
|
@@ -16,6 +16,11 @@ export type DataZoneProjectProperties = {
|
|
|
16
16
|
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
17
17
|
*/
|
|
18
18
|
DomainIdentifier: string;
|
|
19
|
+
/**
|
|
20
|
+
* The ID of the domain unit.
|
|
21
|
+
* @pattern `^[a-z0-9_\-]+$`
|
|
22
|
+
*/
|
|
23
|
+
DomainUnitId?: string;
|
|
19
24
|
/**
|
|
20
25
|
* The glossary terms that can be used in this Amazon DataZone project.
|
|
21
26
|
* @minLength `1`
|
|
@@ -29,6 +34,19 @@ export type DataZoneProjectProperties = {
|
|
|
29
34
|
* @pattern `^[\w -]+$`
|
|
30
35
|
*/
|
|
31
36
|
Name: string;
|
|
37
|
+
/**
|
|
38
|
+
* The project profile ID.
|
|
39
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
40
|
+
*/
|
|
41
|
+
ProjectProfileId?: string;
|
|
42
|
+
/**
|
|
43
|
+
* The project profile version to which the project should be updated. You can only specify the following string for this parameter: latest.
|
|
44
|
+
*/
|
|
45
|
+
ProjectProfileVersion?: string;
|
|
46
|
+
/**
|
|
47
|
+
* The user parameters of the project.
|
|
48
|
+
*/
|
|
49
|
+
UserParameters?: EnvironmentConfigurationUserParameter[];
|
|
32
50
|
};
|
|
33
51
|
/**
|
|
34
52
|
* Attribute type definition for `AWS::DataZone::Project`.
|
|
@@ -57,7 +75,41 @@ export type DataZoneProjectAttributes = {
|
|
|
57
75
|
* The timestamp of when the project was last updated.
|
|
58
76
|
*/
|
|
59
77
|
LastUpdatedAt: string;
|
|
78
|
+
/**
|
|
79
|
+
* The status of the project.
|
|
80
|
+
*/
|
|
81
|
+
ProjectStatus: ProjectStatus;
|
|
60
82
|
};
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::DataZone::Project.EnvironmentConfigurationUserParameter`.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html}
|
|
86
|
+
*/
|
|
87
|
+
export type EnvironmentConfigurationUserParameter = {
|
|
88
|
+
/**
|
|
89
|
+
* @minLength `1`
|
|
90
|
+
* @maxLength `64`
|
|
91
|
+
* @pattern `^[\w -]+$`
|
|
92
|
+
*/
|
|
93
|
+
EnvironmentConfigurationName?: string;
|
|
94
|
+
/**
|
|
95
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
96
|
+
*/
|
|
97
|
+
EnvironmentId?: string;
|
|
98
|
+
EnvironmentParameters?: EnvironmentParameter[];
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Type definition for `AWS::DataZone::Project.EnvironmentParameter`.
|
|
102
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentparameter.html}
|
|
103
|
+
*/
|
|
104
|
+
export type EnvironmentParameter = {
|
|
105
|
+
Name?: string;
|
|
106
|
+
Value?: string;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::DataZone::Project.ProjectStatus`.
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-projectstatus.html}
|
|
111
|
+
*/
|
|
112
|
+
export type ProjectStatus = "ACTIVE" | "MOVING" | "DELETING" | "DELETE_FAILED" | "UPDATING" | "UPDATE_FAILED";
|
|
61
113
|
/**
|
|
62
114
|
* Resource type definition for `AWS::DataZone::Project`.
|
|
63
115
|
* Amazon DataZone projects are business use case–based groupings of people, assets (data), and tools used to simplify access to the AWS analytics.
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -581,11 +581,11 @@ export type ServiceConnectTlsConfiguration = {
|
|
|
581
581
|
*/
|
|
582
582
|
export type ServiceManagedEBSVolumeConfiguration = {
|
|
583
583
|
/**
|
|
584
|
-
* Indicates whether the volume should be encrypted. If
|
|
584
|
+
* Indicates whether the volume should be encrypted. If you turn on Region-level Amazon EBS encryption by default but set this value as ``false``, the setting is overridden and the volume is encrypted with the KMS key specified for Amazon EBS encryption by default. This parameter maps 1:1 with the ``Encrypted`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*.
|
|
585
585
|
*/
|
|
586
586
|
Encrypted?: boolean;
|
|
587
587
|
/**
|
|
588
|
-
* The filesystem type for the volume. For volumes created from a snapshot, you must specify the same filesystem type that the volume was using when the snapshot was created. If there is a filesystem type mismatch, the
|
|
588
|
+
* The filesystem type for the volume. For volumes created from a snapshot, you must specify the same filesystem type that the volume was using when the snapshot was created. If there is a filesystem type mismatch, the tasks will fail to start.
|
|
589
589
|
The available Linux filesystem types are
|
|
590
590
|
``ext3``, ``ext4``, and ``xfs``. If no value is specified, the ``xfs`` filesystem type is used by default.
|
|
591
591
|
The available Windows filesystem types are ``NTFS``.
|
|
@@ -603,7 +603,7 @@ export type ServiceManagedEBSVolumeConfiguration = {
|
|
|
603
603
|
*/
|
|
604
604
|
Iops?: number;
|
|
605
605
|
/**
|
|
606
|
-
* The Amazon Resource Name (ARN) identifier of the AWS Key Management Service key to use for Amazon EBS encryption. When
|
|
606
|
+
* The Amazon Resource Name (ARN) identifier of the AWS Key Management Service key to use for Amazon EBS encryption. When a key is specified using this parameter, it overrides Amazon EBS default encryption or any KMS key that you specified for cluster-level managed storage encryption. This parameter maps 1:1 with the ``KmsKeyId`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information about encrypting Amazon EBS volumes attached to tasks, see [Encrypt data stored in Amazon EBS volumes attached to Amazon ECS tasks](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ebs-kms-encryption.html).
|
|
607
607
|
AWS authenticates the AWS Key Management Service key asynchronously. Therefore, if you specify an ID, alias, or ARN that is invalid, the action can appear to complete, but eventually fails.
|
|
608
608
|
*/
|
|
609
609
|
KmsKeyId?: string;
|
|
@@ -621,7 +621,7 @@ export type ServiceManagedEBSVolumeConfiguration = {
|
|
|
621
621
|
*/
|
|
622
622
|
SizeInGiB?: number;
|
|
623
623
|
/**
|
|
624
|
-
* The snapshot that Amazon ECS uses to create the
|
|
624
|
+
* The snapshot that Amazon ECS uses to create volumes for attachment to tasks maintained by the service. You must specify either ``snapshotId`` or ``sizeInGiB`` in your volume configuration. This parameter maps 1:1 with the ``SnapshotId`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*.
|
|
625
625
|
*/
|
|
626
626
|
SnapshotId?: string;
|
|
627
627
|
/**
|
|
@@ -633,6 +633,9 @@ export type ServiceManagedEBSVolumeConfiguration = {
|
|
|
633
633
|
This parameter is only supported for the ``gp3`` volume type.
|
|
634
634
|
*/
|
|
635
635
|
Throughput?: number;
|
|
636
|
+
/**
|
|
637
|
+
* The rate, in MiB/s, at which data is fetched from a snapshot of an existing EBS volume to create new volumes for attachment to the tasks maintained by the service. This property can be specified only if you specify a ``snapshotId``. For more information, see [Initialize Amazon EBS volumes](https://docs.aws.amazon.com/ebs/latest/userguide/initalize-volume.html) in the *Amazon EBS User Guide*.
|
|
638
|
+
*/
|
|
636
639
|
VolumeInitializationRate?: number;
|
|
637
640
|
/**
|
|
638
641
|
* The volume type. This parameter maps 1:1 with the ``VolumeType`` parameter of the [CreateVolume API](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateVolume.html) in the *Amazon EC2 API Reference*. For more information, see [Amazon EBS volume types](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html) in the *Amazon EC2 User Guide*.
|
|
@@ -0,0 +1,95 @@
|
|
|
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::MPA::ApprovalTeam.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html}
|
|
6
|
+
*/
|
|
7
|
+
export type MPAApprovalTeamProperties = {
|
|
8
|
+
ApprovalStrategy: ApprovalStrategy;
|
|
9
|
+
/**
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
*/
|
|
12
|
+
Approvers: Approver[];
|
|
13
|
+
Description: string;
|
|
14
|
+
Name: string;
|
|
15
|
+
/**
|
|
16
|
+
* @minLength `1`
|
|
17
|
+
*/
|
|
18
|
+
Policies: Policy[];
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::MPA::ApprovalTeam`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html#aws-resource-mpa-approvalteam-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type MPAApprovalTeamAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
*/
|
|
29
|
+
Approvers: {
|
|
30
|
+
ApproverId: string;
|
|
31
|
+
PrimaryIdentityStatus: string;
|
|
32
|
+
ResponseTime: string;
|
|
33
|
+
}[];
|
|
34
|
+
Arn: string;
|
|
35
|
+
CreationTime: string;
|
|
36
|
+
LastUpdateTime: string;
|
|
37
|
+
NumberOfApprovers: number;
|
|
38
|
+
Status: string;
|
|
39
|
+
StatusCode: string;
|
|
40
|
+
StatusMessage: string;
|
|
41
|
+
UpdateSessionArn: string;
|
|
42
|
+
VersionId: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Type definition for `AWS::MPA::ApprovalTeam.ApprovalStrategy`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approvalstrategy.html}
|
|
47
|
+
*/
|
|
48
|
+
export type ApprovalStrategy = {
|
|
49
|
+
MofN: MofNApprovalStrategy;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* Type definition for `AWS::MPA::ApprovalTeam.Approver`.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-approver.html}
|
|
54
|
+
*/
|
|
55
|
+
export type Approver = {
|
|
56
|
+
PrimaryIdentityId: string;
|
|
57
|
+
PrimaryIdentitySourceArn: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::MPA::ApprovalTeam.MofNApprovalStrategy`.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-mofnapprovalstrategy.html}
|
|
62
|
+
*/
|
|
63
|
+
export type MofNApprovalStrategy = {
|
|
64
|
+
MinApprovalsRequired: number;
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* Type definition for `AWS::MPA::ApprovalTeam.Policy`.
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-policy.html}
|
|
69
|
+
*/
|
|
70
|
+
export type Policy = {
|
|
71
|
+
PolicyArn: string;
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* Type definition for `AWS::MPA::ApprovalTeam.Tag`.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-approvalteam-tag.html}
|
|
76
|
+
*/
|
|
77
|
+
export type Tag = {
|
|
78
|
+
/**
|
|
79
|
+
* 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 -.
|
|
80
|
+
*/
|
|
81
|
+
Key: string;
|
|
82
|
+
/**
|
|
83
|
+
* 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 -.
|
|
84
|
+
*/
|
|
85
|
+
Value: string;
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* Resource Type definition for AWS::MPA::ApprovalTeam.
|
|
89
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html}
|
|
90
|
+
*/
|
|
91
|
+
export declare class MPAApprovalTeam extends $Resource<"AWS::MPA::ApprovalTeam", MPAApprovalTeamProperties, MPAApprovalTeamAttributes> {
|
|
92
|
+
static readonly Type = "AWS::MPA::ApprovalTeam";
|
|
93
|
+
constructor(logicalId: string, properties: MPAApprovalTeamProperties, options?: $ResourceOptions);
|
|
94
|
+
}
|
|
95
|
+
//# sourceMappingURL=AWS-MPA-ApprovalTeam.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::MPA::ApprovalTeam.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-approvalteam.html}
|
|
5
|
+
*/
|
|
6
|
+
export class MPAApprovalTeam extends $Resource {
|
|
7
|
+
static Type = "AWS::MPA::ApprovalTeam";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, MPAApprovalTeam.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-MPA-ApprovalTeam.js.map
|
|
@@ -0,0 +1,68 @@
|
|
|
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::MPA::IdentitySource.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html}
|
|
6
|
+
*/
|
|
7
|
+
export type MPAIdentitySourceProperties = {
|
|
8
|
+
IdentitySourceParameters: IdentitySourceParameters;
|
|
9
|
+
Tags?: Tag[];
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Attribute type definition for `AWS::MPA::IdentitySource`.
|
|
13
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html#aws-resource-mpa-identitysource-return-values}
|
|
14
|
+
*/
|
|
15
|
+
export type MPAIdentitySourceAttributes = {
|
|
16
|
+
CreationTime: string;
|
|
17
|
+
IdentitySourceArn: string;
|
|
18
|
+
IdentitySourceParameters: {
|
|
19
|
+
IamIdentityCenter: {
|
|
20
|
+
ApprovalPortalUrl: string;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
IdentitySourceType: string;
|
|
24
|
+
Status: string;
|
|
25
|
+
StatusCode: string;
|
|
26
|
+
StatusMessage: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Type definition for `AWS::MPA::IdentitySource.IamIdentityCenter`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-iamidentitycenter.html}
|
|
31
|
+
*/
|
|
32
|
+
export type IamIdentityCenter = {
|
|
33
|
+
/**
|
|
34
|
+
* @pattern `^arn:.+:sso:::instance/(?:sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
35
|
+
*/
|
|
36
|
+
InstanceArn: string;
|
|
37
|
+
Region: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::MPA::IdentitySource.IdentitySourceParameters`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-identitysourceparameters.html}
|
|
42
|
+
*/
|
|
43
|
+
export type IdentitySourceParameters = {
|
|
44
|
+
IamIdentityCenter: IamIdentityCenter;
|
|
45
|
+
};
|
|
46
|
+
/**
|
|
47
|
+
* Type definition for `AWS::MPA::IdentitySource.Tag`.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-tag.html}
|
|
49
|
+
*/
|
|
50
|
+
export type Tag = {
|
|
51
|
+
/**
|
|
52
|
+
* 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 -.
|
|
53
|
+
*/
|
|
54
|
+
Key: string;
|
|
55
|
+
/**
|
|
56
|
+
* 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 -.
|
|
57
|
+
*/
|
|
58
|
+
Value: string;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* Resource Type definition for AWS::MPA::IdentitySource.
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html}
|
|
63
|
+
*/
|
|
64
|
+
export declare class MPAIdentitySource extends $Resource<"AWS::MPA::IdentitySource", MPAIdentitySourceProperties, MPAIdentitySourceAttributes> {
|
|
65
|
+
static readonly Type = "AWS::MPA::IdentitySource";
|
|
66
|
+
constructor(logicalId: string, properties: MPAIdentitySourceProperties, options?: $ResourceOptions);
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=AWS-MPA-IdentitySource.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::MPA::IdentitySource.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html}
|
|
5
|
+
*/
|
|
6
|
+
export class MPAIdentitySource extends $Resource {
|
|
7
|
+
static Type = "AWS::MPA::IdentitySource";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, MPAIdentitySource.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-MPA-IdentitySource.js.map
|
|
@@ -22,6 +22,10 @@ export type SyntheticsCanaryProperties = {
|
|
|
22
22
|
* Deletes associated lambda resources created by Synthetics if set to True. Default is False
|
|
23
23
|
*/
|
|
24
24
|
DeleteLambdaResourcesOnCanaryDeletion?: boolean;
|
|
25
|
+
/**
|
|
26
|
+
* Setting to control if UpdateCanary will perform a DryRun and validate it is PASSING before performing the Update. Default is FALSE.
|
|
27
|
+
*/
|
|
28
|
+
DryRunAndUpdate?: boolean;
|
|
25
29
|
/**
|
|
26
30
|
* Lambda Execution role used to run your canaries
|
|
27
31
|
*/
|
|
@@ -134,6 +138,16 @@ export type Code = {
|
|
|
134
138
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-resourcetotag.html}
|
|
135
139
|
*/
|
|
136
140
|
export type ResourceToTag = "lambda-function";
|
|
141
|
+
/**
|
|
142
|
+
* Type definition for `AWS::Synthetics::Canary.RetryConfig`.
|
|
143
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-retryconfig.html}
|
|
144
|
+
*/
|
|
145
|
+
export type RetryConfig = {
|
|
146
|
+
/**
|
|
147
|
+
* maximum times the canary will be retried upon the scheduled run failure
|
|
148
|
+
*/
|
|
149
|
+
MaxRetries: number;
|
|
150
|
+
};
|
|
137
151
|
/**
|
|
138
152
|
* Type definition for `AWS::Synthetics::Canary.RunConfig`.
|
|
139
153
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-synthetics-canary-runconfig.html}
|
|
@@ -177,6 +191,10 @@ export type S3Encryption = {
|
|
|
177
191
|
export type Schedule = {
|
|
178
192
|
DurationInSeconds?: string;
|
|
179
193
|
Expression: string;
|
|
194
|
+
/**
|
|
195
|
+
* Provide canary auto retry configuration
|
|
196
|
+
*/
|
|
197
|
+
RetryConfig?: RetryConfig;
|
|
180
198
|
};
|
|
181
199
|
/**
|
|
182
200
|
* Type definition for `AWS::Synthetics::Canary.Tag`.
|