@awboost/cfn-resource-types 0.1.82 → 0.1.84
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-Chatbot-MicrosoftTeamsChannelConfiguration.d.ts +12 -0
- package/lib/AWS-Chatbot-SlackChannelConfiguration.d.ts +12 -0
- package/lib/AWS-CodeBuild-Fleet.d.ts +15 -0
- package/lib/AWS-DataZone-GroupProfile.d.ts +62 -0
- package/lib/AWS-DataZone-GroupProfile.js +13 -0
- package/lib/AWS-DataZone-ProjectMembership.d.ts +41 -0
- package/lib/AWS-DataZone-ProjectMembership.js +12 -0
- package/lib/AWS-DataZone-UserProfile.d.ts +123 -0
- package/lib/AWS-DataZone-UserProfile.js +13 -0
- package/lib/AWS-Glue-Job.d.ts +1 -0
- package/lib/AWS-MWAA-Environment.d.ts +10 -0
- package/lib/AWS-MediaLive-Channel.d.ts +1 -0
- package/lib/AWS-QuickSight-DataSource.d.ts +37 -0
- package/package.json +1 -1
|
@@ -30,6 +30,10 @@ export type ChatbotMicrosoftTeamsChannelConfigurationProperties = {
|
|
|
30
30
|
* ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
|
|
31
31
|
*/
|
|
32
32
|
SnsTopicArns?: string[];
|
|
33
|
+
/**
|
|
34
|
+
* The tags to add to the configuration
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
33
37
|
/**
|
|
34
38
|
* The id of the Microsoft Teams team
|
|
35
39
|
* @minLength `36`
|
|
@@ -67,6 +71,14 @@ export type ChatbotMicrosoftTeamsChannelConfigurationAttributes = {
|
|
|
67
71
|
*/
|
|
68
72
|
Arn: string;
|
|
69
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::Chatbot::MicrosoftTeamsChannelConfiguration.Tag`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-microsoftteamschannelconfiguration-tag.html}
|
|
77
|
+
*/
|
|
78
|
+
export type Tag = {
|
|
79
|
+
Key: string;
|
|
80
|
+
Value: string;
|
|
81
|
+
};
|
|
70
82
|
/**
|
|
71
83
|
* Resource schema for AWS::Chatbot::MicrosoftTeamsChannelConfiguration.
|
|
72
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-microsoftteamschannelconfiguration.html}
|
|
@@ -44,6 +44,10 @@ export type ChatbotSlackChannelConfigurationProperties = {
|
|
|
44
44
|
* ARNs of SNS topics which delivers notifications to AWS Chatbot, for example CloudWatch alarm notifications.
|
|
45
45
|
*/
|
|
46
46
|
SnsTopicArns?: string[];
|
|
47
|
+
/**
|
|
48
|
+
* The tags to add to the configuration
|
|
49
|
+
*/
|
|
50
|
+
Tags?: Tag[];
|
|
47
51
|
/**
|
|
48
52
|
* Enables use of a user role requirement in your chat configuration
|
|
49
53
|
*/
|
|
@@ -60,6 +64,14 @@ export type ChatbotSlackChannelConfigurationAttributes = {
|
|
|
60
64
|
*/
|
|
61
65
|
Arn: string;
|
|
62
66
|
};
|
|
67
|
+
/**
|
|
68
|
+
* Type definition for `AWS::Chatbot::SlackChannelConfiguration.Tag`.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-chatbot-slackchannelconfiguration-tag.html}
|
|
70
|
+
*/
|
|
71
|
+
export type Tag = {
|
|
72
|
+
Key: string;
|
|
73
|
+
Value: string;
|
|
74
|
+
};
|
|
63
75
|
/**
|
|
64
76
|
* Resource schema for AWS::Chatbot::SlackChannelConfiguration.
|
|
65
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-chatbot-slackchannelconfiguration.html}
|
|
@@ -11,11 +11,17 @@ export type CodeBuildFleetProperties = {
|
|
|
11
11
|
BaseCapacity?: number;
|
|
12
12
|
ComputeType?: "BUILD_GENERAL1_SMALL" | "BUILD_GENERAL1_MEDIUM" | "BUILD_GENERAL1_LARGE" | "BUILD_GENERAL1_2XLARGE";
|
|
13
13
|
EnvironmentType?: "WINDOWS_SERVER_2019_CONTAINER" | "WINDOWS_SERVER_2022_CONTAINER" | "LINUX_CONTAINER" | "LINUX_GPU_CONTAINER" | "ARM_CONTAINER";
|
|
14
|
+
/**
|
|
15
|
+
* @pattern `^(?:arn:)[a-zA-Z+-=,._:/@]+$`
|
|
16
|
+
*/
|
|
17
|
+
FleetServiceRole?: string;
|
|
18
|
+
FleetVpcConfig?: VpcConfig;
|
|
14
19
|
/**
|
|
15
20
|
* @minLength `2`
|
|
16
21
|
* @maxLength `128`
|
|
17
22
|
*/
|
|
18
23
|
Name?: string;
|
|
24
|
+
OverflowBehavior?: "QUEUE" | "ON_DEMAND";
|
|
19
25
|
Tags?: Tag[];
|
|
20
26
|
};
|
|
21
27
|
/**
|
|
@@ -48,6 +54,15 @@ export type Tag = {
|
|
|
48
54
|
*/
|
|
49
55
|
Value: string;
|
|
50
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::CodeBuild::Fleet.VpcConfig`.
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-fleet-vpcconfig.html}
|
|
60
|
+
*/
|
|
61
|
+
export type VpcConfig = {
|
|
62
|
+
SecurityGroupIds?: string[];
|
|
63
|
+
Subnets?: string[];
|
|
64
|
+
VpcId?: string;
|
|
65
|
+
};
|
|
51
66
|
/**
|
|
52
67
|
* Resource Type definition for AWS::CodeBuild::Fleet
|
|
53
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-fleet.html}
|
|
@@ -0,0 +1,62 @@
|
|
|
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::DataZone::GroupProfile`.
|
|
5
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneGroupProfileProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The identifier of the Amazon DataZone domain in which the group profile would be created.
|
|
11
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
12
|
+
*/
|
|
13
|
+
DomainIdentifier: string;
|
|
14
|
+
/**
|
|
15
|
+
* The ID of the group.
|
|
16
|
+
* @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|[\p{L}\p{M}\p{S}\p{N}\p{P}\t\n\r ]+)`
|
|
17
|
+
*/
|
|
18
|
+
GroupIdentifier: string;
|
|
19
|
+
/**
|
|
20
|
+
* The status of the group profile.
|
|
21
|
+
*/
|
|
22
|
+
Status?: GroupProfileStatus;
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::DataZone::GroupProfile`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html#aws-resource-datazone-groupprofile-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type DataZoneGroupProfileAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The identifier of the Amazon DataZone domain in which the group profile is created.
|
|
31
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
32
|
+
*/
|
|
33
|
+
DomainId: string;
|
|
34
|
+
/**
|
|
35
|
+
* The group-name of the Group Profile.
|
|
36
|
+
* @minLength `1`
|
|
37
|
+
* @maxLength `1024`
|
|
38
|
+
* @pattern `^[a-zA-Z_0-9+=,.@-]+$`
|
|
39
|
+
*/
|
|
40
|
+
GroupName: string;
|
|
41
|
+
/**
|
|
42
|
+
* The ID of the Amazon DataZone group profile.
|
|
43
|
+
* @pattern `^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$`
|
|
44
|
+
*/
|
|
45
|
+
Id: string;
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::DataZone::GroupProfile.GroupProfileStatus`.
|
|
49
|
+
* The status of the group profile.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-groupprofile-groupprofilestatus.html}
|
|
51
|
+
*/
|
|
52
|
+
export type GroupProfileStatus = "ASSIGNED" | "NOT_ASSIGNED";
|
|
53
|
+
/**
|
|
54
|
+
* Resource type definition for `AWS::DataZone::GroupProfile`.
|
|
55
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html}
|
|
57
|
+
*/
|
|
58
|
+
export declare class DataZoneGroupProfile extends $Resource<"AWS::DataZone::GroupProfile", DataZoneGroupProfileProperties, DataZoneGroupProfileAttributes> {
|
|
59
|
+
static readonly Type = "AWS::DataZone::GroupProfile";
|
|
60
|
+
constructor(logicalId: string, properties: DataZoneGroupProfileProperties, options?: $ResourceOptions);
|
|
61
|
+
}
|
|
62
|
+
//# sourceMappingURL=AWS-DataZone-GroupProfile.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::DataZone::GroupProfile`.
|
|
4
|
+
* Group profiles represent groups of Amazon DataZone users. Groups can be manually created, or mapped to Active Directory groups of enterprise customers. In Amazon DataZone, groups serve two purposes. First, a group can map to a team of users in the organizational chart, and thus reduce the administrative work of a Amazon DataZone project owner when there are new employees joining or leaving a team. Second, corporate administrators use Active Directory groups to manage and update user statuses and so Amazon DataZone domain administrators can use these group memberships to implement Amazon DataZone domain policies.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-groupprofile.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneGroupProfile extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::GroupProfile";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneGroupProfile.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-GroupProfile.js.map
|
|
@@ -0,0 +1,41 @@
|
|
|
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
|
+
* Definition of AWS::DataZone::ProjectMembership Resource Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html}
|
|
6
|
+
*/
|
|
7
|
+
export type DataZoneProjectMembershipProperties = {
|
|
8
|
+
Designation: UserDesignation;
|
|
9
|
+
/**
|
|
10
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
11
|
+
*/
|
|
12
|
+
DomainIdentifier: string;
|
|
13
|
+
Member: Member;
|
|
14
|
+
/**
|
|
15
|
+
* @pattern `^[a-zA-Z0-9_-]{1,36}$`
|
|
16
|
+
*/
|
|
17
|
+
ProjectIdentifier: string;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Type definition for `AWS::DataZone::ProjectMembership.Member`.
|
|
21
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-member.html}
|
|
22
|
+
*/
|
|
23
|
+
export type Member = {
|
|
24
|
+
UserIdentifier: string;
|
|
25
|
+
} | {
|
|
26
|
+
GroupIdentifier: string;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Type definition for `AWS::DataZone::ProjectMembership.UserDesignation`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectmembership-userdesignation.html}
|
|
31
|
+
*/
|
|
32
|
+
export type UserDesignation = "PROJECT_OWNER" | "PROJECT_CONTRIBUTOR";
|
|
33
|
+
/**
|
|
34
|
+
* Definition of AWS::DataZone::ProjectMembership Resource Type
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html}
|
|
36
|
+
*/
|
|
37
|
+
export declare class DataZoneProjectMembership extends $Resource<"AWS::DataZone::ProjectMembership", DataZoneProjectMembershipProperties, Record<string, never>> {
|
|
38
|
+
static readonly Type = "AWS::DataZone::ProjectMembership";
|
|
39
|
+
constructor(logicalId: string, properties: DataZoneProjectMembershipProperties, options?: $ResourceOptions);
|
|
40
|
+
}
|
|
41
|
+
//# sourceMappingURL=AWS-DataZone-ProjectMembership.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Definition of AWS::DataZone::ProjectMembership Resource Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-projectmembership.html}
|
|
5
|
+
*/
|
|
6
|
+
export class DataZoneProjectMembership extends $Resource {
|
|
7
|
+
static Type = "AWS::DataZone::ProjectMembership";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, DataZoneProjectMembership.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-DataZone-ProjectMembership.js.map
|
|
@@ -0,0 +1,123 @@
|
|
|
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::DataZone::UserProfile`.
|
|
5
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html}
|
|
7
|
+
*/
|
|
8
|
+
export type DataZoneUserProfileProperties = {
|
|
9
|
+
/**
|
|
10
|
+
* The identifier of the Amazon DataZone domain in which the user profile would be created.
|
|
11
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
12
|
+
*/
|
|
13
|
+
DomainIdentifier: string;
|
|
14
|
+
/**
|
|
15
|
+
* The status of the user profile.
|
|
16
|
+
*/
|
|
17
|
+
Status?: UserProfileStatus;
|
|
18
|
+
/**
|
|
19
|
+
* The ID of the user.
|
|
20
|
+
* @pattern `(^([0-9a-f]{10}-|)[A-Fa-f0-9]{8}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{4}-[A-Fa-f0-9]{12}$|^[a-zA-Z_0-9+=,.@-]+$|^arn:aws:iam::\d{12}:.+$)`
|
|
21
|
+
*/
|
|
22
|
+
UserIdentifier: string;
|
|
23
|
+
/**
|
|
24
|
+
* The type of the user.
|
|
25
|
+
*/
|
|
26
|
+
UserType?: UserType;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::DataZone::UserProfile`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html#aws-resource-datazone-userprofile-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type DataZoneUserProfileAttributes = {
|
|
33
|
+
Details: UserProfileDetails;
|
|
34
|
+
/**
|
|
35
|
+
* The identifier of the Amazon DataZone domain in which the user profile is created.
|
|
36
|
+
* @pattern `^dzd[-_][a-zA-Z0-9_-]{1,36}$`
|
|
37
|
+
*/
|
|
38
|
+
DomainId: string;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the Amazon DataZone user profile.
|
|
41
|
+
*/
|
|
42
|
+
Id: string;
|
|
43
|
+
/**
|
|
44
|
+
* The type of the user profile.
|
|
45
|
+
*/
|
|
46
|
+
Type: UserProfileType;
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* Type definition for `AWS::DataZone::UserProfile.IamUserProfileDetails`.
|
|
50
|
+
* The details of the IAM User Profile.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-iamuserprofiledetails.html}
|
|
52
|
+
*/
|
|
53
|
+
export type IamUserProfileDetails = {
|
|
54
|
+
/**
|
|
55
|
+
* The ARN of the IAM User Profile.
|
|
56
|
+
*/
|
|
57
|
+
Arn?: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* Type definition for `AWS::DataZone::UserProfile.SsoUserProfileDetails`.
|
|
61
|
+
* The details of the SSO User Profile.
|
|
62
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-ssouserprofiledetails.html}
|
|
63
|
+
*/
|
|
64
|
+
export type SsoUserProfileDetails = {
|
|
65
|
+
/**
|
|
66
|
+
* The First Name of the IAM User Profile.
|
|
67
|
+
*/
|
|
68
|
+
FirstName?: string;
|
|
69
|
+
/**
|
|
70
|
+
* The Last Name of the IAM User Profile.
|
|
71
|
+
*/
|
|
72
|
+
LastName?: string;
|
|
73
|
+
/**
|
|
74
|
+
* The username of the SSO User Profile.
|
|
75
|
+
* @minLength `1`
|
|
76
|
+
* @maxLength `1024`
|
|
77
|
+
* @pattern `^[a-zA-Z_0-9+=,.@-]+$`
|
|
78
|
+
*/
|
|
79
|
+
Username?: string;
|
|
80
|
+
};
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::DataZone::UserProfile.UserProfileDetails`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiledetails.html}
|
|
84
|
+
*/
|
|
85
|
+
export type UserProfileDetails = {
|
|
86
|
+
/**
|
|
87
|
+
* The details of the IAM User Profile.
|
|
88
|
+
*/
|
|
89
|
+
Iam: IamUserProfileDetails;
|
|
90
|
+
} | {
|
|
91
|
+
/**
|
|
92
|
+
* The details of the SSO User Profile.
|
|
93
|
+
*/
|
|
94
|
+
Sso: SsoUserProfileDetails;
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* Type definition for `AWS::DataZone::UserProfile.UserProfileStatus`.
|
|
98
|
+
* The status of the user profile.
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofilestatus.html}
|
|
100
|
+
*/
|
|
101
|
+
export type UserProfileStatus = "ASSIGNED" | "NOT_ASSIGNED" | "ACTIVATED" | "DEACTIVATED";
|
|
102
|
+
/**
|
|
103
|
+
* Type definition for `AWS::DataZone::UserProfile.UserProfileType`.
|
|
104
|
+
* The type of the user profile.
|
|
105
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-userprofiletype.html}
|
|
106
|
+
*/
|
|
107
|
+
export type UserProfileType = "IAM" | "SSO";
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::DataZone::UserProfile.UserType`.
|
|
110
|
+
* The type of the user.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-userprofile-usertype.html}
|
|
112
|
+
*/
|
|
113
|
+
export type UserType = "IAM_USER" | "IAM_ROLE" | "SSO_USER";
|
|
114
|
+
/**
|
|
115
|
+
* Resource type definition for `AWS::DataZone::UserProfile`.
|
|
116
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html}
|
|
118
|
+
*/
|
|
119
|
+
export declare class DataZoneUserProfile extends $Resource<"AWS::DataZone::UserProfile", DataZoneUserProfileProperties, DataZoneUserProfileAttributes> {
|
|
120
|
+
static readonly Type = "AWS::DataZone::UserProfile";
|
|
121
|
+
constructor(logicalId: string, properties: DataZoneUserProfileProperties, options?: $ResourceOptions);
|
|
122
|
+
}
|
|
123
|
+
//# sourceMappingURL=AWS-DataZone-UserProfile.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::DataZone::UserProfile`.
|
|
4
|
+
* A user profile represents Amazon DataZone users. Amazon DataZone supports both IAM roles and SSO identities to interact with the Amazon DataZone Management Console and the data portal for different purposes. Domain administrators use IAM roles to perform the initial administrative domain-related work in the Amazon DataZone Management Console, including creating new Amazon DataZone domains, configuring metadata form types, and implementing policies. Data workers use their SSO corporate identities via Identity Center to log into the Amazon DataZone Data Portal and access projects where they have memberships.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.html}
|
|
6
|
+
*/
|
|
7
|
+
export class DataZoneUserProfile extends $Resource {
|
|
8
|
+
static Type = "AWS::DataZone::UserProfile";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, DataZoneUserProfile.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-DataZone-UserProfile.js.map
|
package/lib/AWS-Glue-Job.d.ts
CHANGED
|
@@ -67,11 +67,21 @@ export type MWAAEnvironmentProperties = {
|
|
|
67
67
|
* Logging configuration for the environment.
|
|
68
68
|
*/
|
|
69
69
|
LoggingConfiguration?: LoggingConfiguration;
|
|
70
|
+
/**
|
|
71
|
+
* Maximum webserver compute units.
|
|
72
|
+
* @min `2`
|
|
73
|
+
*/
|
|
74
|
+
MaxWebservers?: number;
|
|
70
75
|
/**
|
|
71
76
|
* Maximum worker compute units.
|
|
72
77
|
* @min `1`
|
|
73
78
|
*/
|
|
74
79
|
MaxWorkers?: number;
|
|
80
|
+
/**
|
|
81
|
+
* Minimum webserver compute units.
|
|
82
|
+
* @min `2`
|
|
83
|
+
*/
|
|
84
|
+
MinWebservers?: number;
|
|
75
85
|
/**
|
|
76
86
|
* Minimum worker compute units.
|
|
77
87
|
* @min `1`
|
|
@@ -552,6 +552,37 @@ export type RdsParameters = {
|
|
|
552
552
|
*/
|
|
553
553
|
InstanceId: string;
|
|
554
554
|
};
|
|
555
|
+
/**
|
|
556
|
+
* Type definition for `AWS::QuickSight::DataSource.RedshiftIAMParameters`.
|
|
557
|
+
* <p>A structure that grants Amazon QuickSight access to your cluster and make a call to the <code>redshift:GetClusterCredentials</code> API. For more information on the <code>redshift:GetClusterCredentials</code> API, see <a href="https://docs.aws.amazon.com/redshift/latest/APIReference/API_GetClusterCredentials.html">
|
|
558
|
+
<code>GetClusterCredentials</code>
|
|
559
|
+
</a>.</p>
|
|
560
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-redshiftiamparameters.html}
|
|
561
|
+
*/
|
|
562
|
+
export type RedshiftIAMParameters = {
|
|
563
|
+
/**
|
|
564
|
+
* <p>Automatically creates a database user. If your database doesn't have a <code>DatabaseUser</code>, set this parameter to <code>True</code>. If there is no <code>DatabaseUser</code>, Amazon QuickSight can't connect to your cluster. The <code>RoleArn</code> that you use for this operation must grant access to <code>redshift:CreateClusterUser</code> to successfully create the user.</p>
|
|
565
|
+
*/
|
|
566
|
+
AutoCreateDatabaseUser?: boolean;
|
|
567
|
+
/**
|
|
568
|
+
* <p>A list of groups whose permissions will be granted to Amazon QuickSight to access the cluster. These permissions are combined with the permissions granted to Amazon QuickSight by the <code>DatabaseUser</code>. If you choose to include this parameter, the <code>RoleArn</code> must grant access to <code>redshift:JoinGroup</code>.</p>
|
|
569
|
+
* @minLength `1`
|
|
570
|
+
* @maxLength `50`
|
|
571
|
+
*/
|
|
572
|
+
DatabaseGroups?: string[];
|
|
573
|
+
/**
|
|
574
|
+
* <p>The user whose permissions and group memberships will be used by Amazon QuickSight to access the cluster. If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of <code>AutoCreateDatabaseUser</code> to <code>True</code> to create a new user with PUBLIC permissions.</p>
|
|
575
|
+
* @minLength `1`
|
|
576
|
+
* @maxLength `64`
|
|
577
|
+
*/
|
|
578
|
+
DatabaseUser?: string;
|
|
579
|
+
/**
|
|
580
|
+
* <p>Use the <code>RoleArn</code> structure to allow Amazon QuickSight to call <code>redshift:GetClusterCredentials</code> on your cluster. The calling principal must have <code>iam:PassRole</code> access to pass the role to Amazon QuickSight. The role's trust policy must allow the Amazon QuickSight service principal to assume the role.</p>
|
|
581
|
+
* @minLength `20`
|
|
582
|
+
* @maxLength `2048`
|
|
583
|
+
*/
|
|
584
|
+
RoleArn: string;
|
|
585
|
+
};
|
|
555
586
|
/**
|
|
556
587
|
* Type definition for `AWS::QuickSight::DataSource.RedshiftParameters`.
|
|
557
588
|
* <p>The parameters for Amazon Redshift. The <code>ClusterId</code> field can be blank if
|
|
@@ -578,6 +609,12 @@ export type RedshiftParameters = {
|
|
|
578
609
|
* @maxLength `256`
|
|
579
610
|
*/
|
|
580
611
|
Host?: string;
|
|
612
|
+
/**
|
|
613
|
+
* <p>A structure that grants Amazon QuickSight access to your cluster and make a call to the <code>redshift:GetClusterCredentials</code> API. For more information on the <code>redshift:GetClusterCredentials</code> API, see <a href="https://docs.aws.amazon.com/redshift/latest/APIReference/API_GetClusterCredentials.html">
|
|
614
|
+
<code>GetClusterCredentials</code>
|
|
615
|
+
</a>.</p>
|
|
616
|
+
*/
|
|
617
|
+
IAMParameters?: RedshiftIAMParameters;
|
|
581
618
|
/**
|
|
582
619
|
* <p>The parameters for an IAM Identity Center configuration.</p>
|
|
583
620
|
*/
|