cdk-docker-image-deployment 0.0.174 → 0.0.176

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.
@@ -71,6 +71,18 @@
71
71
  "output_token": "NextToken",
72
72
  "limit_key": "MaxResults",
73
73
  "result_key": "AdminAccounts"
74
+ },
75
+ "ListSecurityControlDefinitions": {
76
+ "input_token": "NextToken",
77
+ "output_token": "NextToken",
78
+ "limit_key": "MaxResults",
79
+ "result_key": "SecurityControlDefinitions"
80
+ },
81
+ "ListStandardsControlAssociations": {
82
+ "input_token": "NextToken",
83
+ "output_token": "NextToken",
84
+ "limit_key": "MaxResults",
85
+ "result_key": "StandardsControlAssociationSummaries"
74
86
  }
75
87
  }
76
88
  }
@@ -6380,6 +6380,10 @@ declare namespace Connect {
6380
6380
  * The identifier for the quick connect.
6381
6381
  */
6382
6382
  QuickConnectId?: QuickConnectId;
6383
+ /**
6384
+ * The contactId that is related to this contact.
6385
+ */
6386
+ RelatedContactId?: ContactId;
6383
6387
  }
6384
6388
  export interface StartTaskContactResponse {
6385
6389
  /**
@@ -28,19 +28,19 @@ declare class ConnectCases extends Service {
28
28
  */
29
29
  batchPutFieldOptions(callback?: (err: AWSError, data: ConnectCases.Types.BatchPutFieldOptionsResponse) => void): Request<ConnectCases.Types.BatchPutFieldOptionsResponse, AWSError>;
30
30
  /**
31
- * Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. customer_id is a required field when creating a case.
31
+ * Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. The following fields are required when creating a case: &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;customer_id&lt;/code&gt; - You must provide the full customer profile ARN in this format: &lt;code&gt;arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;title&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/note&gt;
32
32
  */
33
33
  createCase(params: ConnectCases.Types.CreateCaseRequest, callback?: (err: AWSError, data: ConnectCases.Types.CreateCaseResponse) => void): Request<ConnectCases.Types.CreateCaseResponse, AWSError>;
34
34
  /**
35
- * Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. customer_id is a required field when creating a case.
35
+ * Creates a case in the specified Cases domain. Case system and custom fields are taken as an array id/value pairs with a declared data types. The following fields are required when creating a case: &lt;ul&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;customer_id&lt;/code&gt; - You must provide the full customer profile ARN in this format: &lt;code&gt;arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;li&gt; &lt;p&gt; &lt;code&gt;title&lt;/code&gt; &lt;/p&gt; &lt;/li&gt; &lt;/ul&gt; &lt;/note&gt;
36
36
  */
37
37
  createCase(callback?: (err: AWSError, data: ConnectCases.Types.CreateCaseResponse) => void): Request<ConnectCases.Types.CreateCaseResponse, AWSError>;
38
38
  /**
39
- * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API.
39
+ * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases.
40
40
  */
41
41
  createDomain(params: ConnectCases.Types.CreateDomainRequest, callback?: (err: AWSError, data: ConnectCases.Types.CreateDomainResponse) => void): Request<ConnectCases.Types.CreateDomainResponse, AWSError>;
42
42
  /**
43
- * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API.
43
+ * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain. This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect CreateIntegrationAssociation API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see Onboard to Cases.
44
44
  */
45
45
  createDomain(callback?: (err: AWSError, data: ConnectCases.Types.CreateDomainResponse) => void): Request<ConnectCases.Types.CreateDomainResponse, AWSError>;
46
46
  /**
@@ -75,6 +75,14 @@ declare class ConnectCases extends Service {
75
75
  * Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.
76
76
  */
77
77
  createTemplate(callback?: (err: AWSError, data: ConnectCases.Types.CreateTemplateResponse) => void): Request<ConnectCases.Types.CreateTemplateResponse, AWSError>;
78
+ /**
79
+ * Deletes a domain.
80
+ */
81
+ deleteDomain(params: ConnectCases.Types.DeleteDomainRequest, callback?: (err: AWSError, data: ConnectCases.Types.DeleteDomainResponse) => void): Request<ConnectCases.Types.DeleteDomainResponse, AWSError>;
82
+ /**
83
+ * Deletes a domain.
84
+ */
85
+ deleteDomain(callback?: (err: AWSError, data: ConnectCases.Types.DeleteDomainResponse) => void): Request<ConnectCases.Types.DeleteDomainResponse, AWSError>;
78
86
  /**
79
87
  * Returns information about a specific case if it exists.
80
88
  */
@@ -180,11 +188,11 @@ declare class ConnectCases extends Service {
180
188
  */
181
189
  putCaseEventConfiguration(callback?: (err: AWSError, data: ConnectCases.Types.PutCaseEventConfigurationResponse) => void): Request<ConnectCases.Types.PutCaseEventConfigurationResponse, AWSError>;
182
190
  /**
183
- * Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.
191
+ * Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents. For customer_id you must provide the full customer profile ARN in this format: arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID.
184
192
  */
185
193
  searchCases(params: ConnectCases.Types.SearchCasesRequest, callback?: (err: AWSError, data: ConnectCases.Types.SearchCasesResponse) => void): Request<ConnectCases.Types.SearchCasesResponse, AWSError>;
186
194
  /**
187
- * Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents.
195
+ * Searches for cases within their associated Cases domain. Search results are returned as a paginated list of abridged case documents. For customer_id you must provide the full customer profile ARN in this format: arn:aws:profile:your AWS Region:your AWS account ID:domains/profiles domain name/profiles/profile ID.
188
196
  */
189
197
  searchCases(callback?: (err: AWSError, data: ConnectCases.Types.SearchCasesResponse) => void): Request<ConnectCases.Types.SearchCasesResponse, AWSError>;
190
198
  /**
@@ -549,6 +557,14 @@ declare namespace ConnectCases {
549
557
  templateId: TemplateId;
550
558
  }
551
559
  export type CreatedTime = Date;
560
+ export interface DeleteDomainRequest {
561
+ /**
562
+ * The unique identifier of the Cases domain.
563
+ */
564
+ domainId: DomainId;
565
+ }
566
+ export interface DeleteDomainResponse {
567
+ }
552
568
  export type DomainArn = string;
553
569
  export type DomainId = string;
554
570
  export type DomainName = string;
@@ -1146,7 +1146,7 @@ declare namespace Redshift {
1146
1146
  */
1147
1147
  SnapshotArn?: String;
1148
1148
  /**
1149
- * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
1149
+ * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user or role has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
1150
1150
  */
1151
1151
  SnapshotClusterIdentifier?: String;
1152
1152
  /**
@@ -1745,7 +1745,7 @@ declare namespace Redshift {
1745
1745
  */
1746
1746
  SourceSnapshotIdentifier: String;
1747
1747
  /**
1748
- * The identifier of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the identifier for a valid cluster.
1748
+ * The identifier of the cluster the source snapshot was created from. This parameter is required if your IAM user or role has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the identifier for a valid cluster.
1749
1749
  */
1750
1750
  SourceSnapshotClusterIdentifier?: String;
1751
1751
  /**
@@ -1798,11 +1798,11 @@ declare namespace Redshift {
1798
1798
  */
1799
1799
  NodeType: String;
1800
1800
  /**
1801
- * The user name associated with the admin user account for the cluster that is being created. Constraints: Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. The first character must be a letter. Must not contain a colon (:) or a slash (/). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
1801
+ * The user name associated with the admin user for the cluster that is being created. Constraints: Must be 1 - 128 alphanumeric characters or hyphens. The user name can't be PUBLIC. Must contain only lowercase letters, numbers, underscore, plus sign, period (dot), at symbol (@), or hyphen. The first character must be a letter. Must not contain a colon (:) or a slash (/). Cannot be a reserved word. A list of reserved words can be found in Reserved Words in the Amazon Redshift Database Developer Guide.
1802
1802
  */
1803
1803
  MasterUsername: String;
1804
1804
  /**
1805
- * The password associated with the admin user account for the cluster that is being created. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
1805
+ * The password associated with the admin user for the cluster that is being created. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
1806
1806
  */
1807
1807
  MasterUserPassword: String;
1808
1808
  /**
@@ -2399,7 +2399,7 @@ declare namespace Redshift {
2399
2399
  */
2400
2400
  SnapshotIdentifier: String;
2401
2401
  /**
2402
- * The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the name of valid cluster.
2402
+ * The unique identifier of the cluster the snapshot was created from. This parameter is required if your IAM user or role has a policy containing a snapshot resource element that specifies anything other than * for the cluster name. Constraints: Must be the name of valid cluster.
2403
2403
  */
2404
2404
  SnapshotClusterIdentifier?: String;
2405
2405
  }
@@ -2591,7 +2591,7 @@ declare namespace Redshift {
2591
2591
  */
2592
2592
  EndTime?: TStamp;
2593
2593
  /**
2594
- * The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. Default: 100 Constraints: minimum 20, maximum 100.
2594
+ * The maximum number of response records to return in each call. If the number of remaining response records exceeds the specified MaxRecords value, a value is returned in a marker field of the response. You can retrieve the next set of records by retrying the command with the returned marker value. Default: 100 Constraints: minimum 20, maximum 500.
2595
2595
  */
2596
2596
  MaxRecords?: IntegerOptional;
2597
2597
  /**
@@ -3979,7 +3979,7 @@ declare namespace Redshift {
3979
3979
  */
3980
3980
  VpcSecurityGroupIds?: VpcSecurityGroupIdList;
3981
3981
  /**
3982
- * The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response. Operations never return the password, so this operation provides a way to regain access to the admin user account for a cluster if the password is lost. Default: Uses existing setting. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
3982
+ * The new password for the cluster admin user. This change is asynchronously applied as soon as possible. Between the time of the request and the completion of the request, the MasterUserPassword element exists in the PendingModifiedValues element of the operation response. Operations never return the password, so this operation provides a way to regain access to the admin user for a cluster if the password is lost. Default: Uses existing setting. Constraints: Must be between 8 and 64 characters in length. Must contain at least one uppercase letter. Must contain at least one lowercase letter. Must contain one number. Can be any printable ASCII character (ASCII code 33-126) except ' (single quote), " (double quote), \, /, or @.
3983
3983
  */
3984
3984
  MasterUserPassword?: String;
3985
3985
  /**
@@ -4828,7 +4828,7 @@ declare namespace Redshift {
4828
4828
  */
4829
4829
  SnapshotArn?: String;
4830
4830
  /**
4831
- * The name of the cluster the source snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
4831
+ * The name of the cluster the source snapshot was created from. This parameter is required if your IAM user or role has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
4832
4832
  */
4833
4833
  SnapshotClusterIdentifier?: String;
4834
4834
  /**
@@ -5091,7 +5091,7 @@ declare namespace Redshift {
5091
5091
  */
5092
5092
  SnapshotArn?: String;
5093
5093
  /**
5094
- * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
5094
+ * The identifier of the cluster the snapshot was created from. This parameter is required if your IAM user or role has a policy containing a snapshot resource element that specifies anything other than * for the cluster name.
5095
5095
  */
5096
5096
  SnapshotClusterIdentifier?: String;
5097
5097
  /**