aws-sdk 2.1641.0 → 2.1643.0
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/README.md +1 -1
 - package/apis/acm-pca-2017-08-22.min.json +4 -1
 - package/apis/batch-2016-08-10.min.json +4 -1
 - package/apis/codebuild-2016-10-06.min.json +50 -29
 - package/apis/cognito-idp-2016-04-18.min.json +108 -27
 - package/apis/datazone-2018-05-10.min.json +792 -403
 - package/apis/datazone-2018-05-10.paginators.json +6 -0
 - package/apis/ds-2015-04-16.min.json +7 -1
 - package/apis/elasticfilesystem-2015-02-01.min.json +7 -1
 - package/apis/glue-2017-03-31.min.json +294 -142
 - package/apis/glue-2017-03-31.paginators.json +6 -0
 - package/apis/kms-2014-11-01.examples.json +4 -2
 - package/apis/macie2-2020-01-01.min.json +254 -143
 - package/apis/macie2-2020-01-01.paginators.json +6 -0
 - package/apis/mediaconvert-2017-08-29.min.json +208 -131
 - package/apis/mediaconvert-2017-08-29.paginators.json +6 -0
 - package/apis/route53domains-2014-05-15.min.json +7 -1
 - package/apis/waf-2015-08-24.min.json +7 -1
 - package/clients/acmpca.d.ts +2 -2
 - package/clients/codebuild.d.ts +24 -1
 - package/clients/datazone.d.ts +398 -4
 - package/clients/ec2.d.ts +258 -258
 - package/clients/glue.d.ts +206 -4
 - package/clients/macie2.d.ts +149 -44
 - package/clients/mediaconvert.d.ts +77 -6
 - package/clients/secretsmanager.d.ts +2 -2
 - package/dist/aws-sdk-core-react-native.js +1 -1
 - package/dist/aws-sdk-react-native.js +17 -17
 - package/dist/aws-sdk.js +182 -62
 - package/dist/aws-sdk.min.js +92 -92
 - package/lib/core.js +1 -1
 - package/package.json +1 -1
 
    
        package/clients/datazone.d.ts
    CHANGED
    
    | 
         @@ -27,6 +27,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       27 
27 
     | 
    
         
             
               * Accepts a subscription request to a specific asset. 
         
     | 
| 
       28 
28 
     | 
    
         
             
               */
         
     | 
| 
       29 
29 
     | 
    
         
             
              acceptSubscriptionRequest(callback?: (err: AWSError, data: DataZone.Types.AcceptSubscriptionRequestOutput) => void): Request<DataZone.Types.AcceptSubscriptionRequestOutput, AWSError>;
         
     | 
| 
      
 30 
     | 
    
         
            +
              /**
         
     | 
| 
      
 31 
     | 
    
         
            +
               * Associates the environment role in Amazon DataZone.
         
     | 
| 
      
 32 
     | 
    
         
            +
               */
         
     | 
| 
      
 33 
     | 
    
         
            +
              associateEnvironmentRole(params: DataZone.Types.AssociateEnvironmentRoleInput, callback?: (err: AWSError, data: DataZone.Types.AssociateEnvironmentRoleOutput) => void): Request<DataZone.Types.AssociateEnvironmentRoleOutput, AWSError>;
         
     | 
| 
      
 34 
     | 
    
         
            +
              /**
         
     | 
| 
      
 35 
     | 
    
         
            +
               * Associates the environment role in Amazon DataZone.
         
     | 
| 
      
 36 
     | 
    
         
            +
               */
         
     | 
| 
      
 37 
     | 
    
         
            +
              associateEnvironmentRole(callback?: (err: AWSError, data: DataZone.Types.AssociateEnvironmentRoleOutput) => void): Request<DataZone.Types.AssociateEnvironmentRoleOutput, AWSError>;
         
     | 
| 
       30 
38 
     | 
    
         
             
              /**
         
     | 
| 
       31 
39 
     | 
    
         
             
               * Cancels the metadata generation run.
         
     | 
| 
       32 
40 
     | 
    
         
             
               */
         
     | 
| 
         @@ -91,6 +99,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       91 
99 
     | 
    
         
             
               * Create an Amazon DataZone environment.
         
     | 
| 
       92 
100 
     | 
    
         
             
               */
         
     | 
| 
       93 
101 
     | 
    
         
             
              createEnvironment(callback?: (err: AWSError, data: DataZone.Types.CreateEnvironmentOutput) => void): Request<DataZone.Types.CreateEnvironmentOutput, AWSError>;
         
     | 
| 
      
 102 
     | 
    
         
            +
              /**
         
     | 
| 
      
 103 
     | 
    
         
            +
               * Creates an action for the environment, for example, creates a console link for an analytics tool that is available in this environment.
         
     | 
| 
      
 104 
     | 
    
         
            +
               */
         
     | 
| 
      
 105 
     | 
    
         
            +
              createEnvironmentAction(params: DataZone.Types.CreateEnvironmentActionInput, callback?: (err: AWSError, data: DataZone.Types.CreateEnvironmentActionOutput) => void): Request<DataZone.Types.CreateEnvironmentActionOutput, AWSError>;
         
     | 
| 
      
 106 
     | 
    
         
            +
              /**
         
     | 
| 
      
 107 
     | 
    
         
            +
               * Creates an action for the environment, for example, creates a console link for an analytics tool that is available in this environment.
         
     | 
| 
      
 108 
     | 
    
         
            +
               */
         
     | 
| 
      
 109 
     | 
    
         
            +
              createEnvironmentAction(callback?: (err: AWSError, data: DataZone.Types.CreateEnvironmentActionOutput) => void): Request<DataZone.Types.CreateEnvironmentActionOutput, AWSError>;
         
     | 
| 
       94 
110 
     | 
    
         
             
              /**
         
     | 
| 
       95 
111 
     | 
    
         
             
               * Creates an Amazon DataZone environment profile.
         
     | 
| 
       96 
112 
     | 
    
         
             
               */
         
     | 
| 
         @@ -227,6 +243,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       227 
243 
     | 
    
         
             
               * Deletes an environment in Amazon DataZone.
         
     | 
| 
       228 
244 
     | 
    
         
             
               */
         
     | 
| 
       229 
245 
     | 
    
         
             
              deleteEnvironment(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         
     | 
| 
      
 246 
     | 
    
         
            +
              /**
         
     | 
| 
      
 247 
     | 
    
         
            +
               * Deletes an action for the environment, for example, deletes a console link for an analytics tool that is available in this environment.
         
     | 
| 
      
 248 
     | 
    
         
            +
               */
         
     | 
| 
      
 249 
     | 
    
         
            +
              deleteEnvironmentAction(params: DataZone.Types.DeleteEnvironmentActionInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         
     | 
| 
      
 250 
     | 
    
         
            +
              /**
         
     | 
| 
      
 251 
     | 
    
         
            +
               * Deletes an action for the environment, for example, deletes a console link for an analytics tool that is available in this environment.
         
     | 
| 
      
 252 
     | 
    
         
            +
               */
         
     | 
| 
      
 253 
     | 
    
         
            +
              deleteEnvironmentAction(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
         
     | 
| 
       230 
254 
     | 
    
         
             
              /**
         
     | 
| 
       231 
255 
     | 
    
         
             
               * Deletes the blueprint configuration in Amazon DataZone.
         
     | 
| 
       232 
256 
     | 
    
         
             
               */
         
     | 
| 
         @@ -323,6 +347,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       323 
347 
     | 
    
         
             
               * Deletes the specified time series form for the specified asset. 
         
     | 
| 
       324 
348 
     | 
    
         
             
               */
         
     | 
| 
       325 
349 
     | 
    
         
             
              deleteTimeSeriesDataPoints(callback?: (err: AWSError, data: DataZone.Types.DeleteTimeSeriesDataPointsOutput) => void): Request<DataZone.Types.DeleteTimeSeriesDataPointsOutput, AWSError>;
         
     | 
| 
      
 350 
     | 
    
         
            +
              /**
         
     | 
| 
      
 351 
     | 
    
         
            +
               * Disassociates the environment role in Amazon DataZone.
         
     | 
| 
      
 352 
     | 
    
         
            +
               */
         
     | 
| 
      
 353 
     | 
    
         
            +
              disassociateEnvironmentRole(params: DataZone.Types.DisassociateEnvironmentRoleInput, callback?: (err: AWSError, data: DataZone.Types.DisassociateEnvironmentRoleOutput) => void): Request<DataZone.Types.DisassociateEnvironmentRoleOutput, AWSError>;
         
     | 
| 
      
 354 
     | 
    
         
            +
              /**
         
     | 
| 
      
 355 
     | 
    
         
            +
               * Disassociates the environment role in Amazon DataZone.
         
     | 
| 
      
 356 
     | 
    
         
            +
               */
         
     | 
| 
      
 357 
     | 
    
         
            +
              disassociateEnvironmentRole(callback?: (err: AWSError, data: DataZone.Types.DisassociateEnvironmentRoleOutput) => void): Request<DataZone.Types.DisassociateEnvironmentRoleOutput, AWSError>;
         
     | 
| 
       326 
358 
     | 
    
         
             
              /**
         
     | 
| 
       327 
359 
     | 
    
         
             
               * Gets an Amazon DataZone asset.
         
     | 
| 
       328 
360 
     | 
    
         
             
               */
         
     | 
| 
         @@ -371,6 +403,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       371 
403 
     | 
    
         
             
               * Gets an Amazon DataZone environment.
         
     | 
| 
       372 
404 
     | 
    
         
             
               */
         
     | 
| 
       373 
405 
     | 
    
         
             
              getEnvironment(callback?: (err: AWSError, data: DataZone.Types.GetEnvironmentOutput) => void): Request<DataZone.Types.GetEnvironmentOutput, AWSError>;
         
     | 
| 
      
 406 
     | 
    
         
            +
              /**
         
     | 
| 
      
 407 
     | 
    
         
            +
               * Gets the specified environment action.
         
     | 
| 
      
 408 
     | 
    
         
            +
               */
         
     | 
| 
      
 409 
     | 
    
         
            +
              getEnvironmentAction(params: DataZone.Types.GetEnvironmentActionInput, callback?: (err: AWSError, data: DataZone.Types.GetEnvironmentActionOutput) => void): Request<DataZone.Types.GetEnvironmentActionOutput, AWSError>;
         
     | 
| 
      
 410 
     | 
    
         
            +
              /**
         
     | 
| 
      
 411 
     | 
    
         
            +
               * Gets the specified environment action.
         
     | 
| 
      
 412 
     | 
    
         
            +
               */
         
     | 
| 
      
 413 
     | 
    
         
            +
              getEnvironmentAction(callback?: (err: AWSError, data: DataZone.Types.GetEnvironmentActionOutput) => void): Request<DataZone.Types.GetEnvironmentActionOutput, AWSError>;
         
     | 
| 
       374 
414 
     | 
    
         
             
              /**
         
     | 
| 
       375 
415 
     | 
    
         
             
               * Gets an Amazon DataZone blueprint.
         
     | 
| 
       376 
416 
     | 
    
         
             
               */
         
     | 
| 
         @@ -547,6 +587,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       547 
587 
     | 
    
         
             
               * Lists Amazon DataZone domains.
         
     | 
| 
       548 
588 
     | 
    
         
             
               */
         
     | 
| 
       549 
589 
     | 
    
         
             
              listDomains(callback?: (err: AWSError, data: DataZone.Types.ListDomainsOutput) => void): Request<DataZone.Types.ListDomainsOutput, AWSError>;
         
     | 
| 
      
 590 
     | 
    
         
            +
              /**
         
     | 
| 
      
 591 
     | 
    
         
            +
               * Lists existing environment actions.
         
     | 
| 
      
 592 
     | 
    
         
            +
               */
         
     | 
| 
      
 593 
     | 
    
         
            +
              listEnvironmentActions(params: DataZone.Types.ListEnvironmentActionsInput, callback?: (err: AWSError, data: DataZone.Types.ListEnvironmentActionsOutput) => void): Request<DataZone.Types.ListEnvironmentActionsOutput, AWSError>;
         
     | 
| 
      
 594 
     | 
    
         
            +
              /**
         
     | 
| 
      
 595 
     | 
    
         
            +
               * Lists existing environment actions.
         
     | 
| 
      
 596 
     | 
    
         
            +
               */
         
     | 
| 
      
 597 
     | 
    
         
            +
              listEnvironmentActions(callback?: (err: AWSError, data: DataZone.Types.ListEnvironmentActionsOutput) => void): Request<DataZone.Types.ListEnvironmentActionsOutput, AWSError>;
         
     | 
| 
       550 
598 
     | 
    
         
             
              /**
         
     | 
| 
       551 
599 
     | 
    
         
             
               * Lists blueprint configurations for a Amazon DataZone environment.
         
     | 
| 
       552 
600 
     | 
    
         
             
               */
         
     | 
| 
         @@ -795,6 +843,14 @@ declare class DataZone extends Service { 
     | 
|
| 
       795 
843 
     | 
    
         
             
               * Updates the specified environment in Amazon DataZone.
         
     | 
| 
       796 
844 
     | 
    
         
             
               */
         
     | 
| 
       797 
845 
     | 
    
         
             
              updateEnvironment(callback?: (err: AWSError, data: DataZone.Types.UpdateEnvironmentOutput) => void): Request<DataZone.Types.UpdateEnvironmentOutput, AWSError>;
         
     | 
| 
      
 846 
     | 
    
         
            +
              /**
         
     | 
| 
      
 847 
     | 
    
         
            +
               * Updates an environment action.
         
     | 
| 
      
 848 
     | 
    
         
            +
               */
         
     | 
| 
      
 849 
     | 
    
         
            +
              updateEnvironmentAction(params: DataZone.Types.UpdateEnvironmentActionInput, callback?: (err: AWSError, data: DataZone.Types.UpdateEnvironmentActionOutput) => void): Request<DataZone.Types.UpdateEnvironmentActionOutput, AWSError>;
         
     | 
| 
      
 850 
     | 
    
         
            +
              /**
         
     | 
| 
      
 851 
     | 
    
         
            +
               * Updates an environment action.
         
     | 
| 
      
 852 
     | 
    
         
            +
               */
         
     | 
| 
      
 853 
     | 
    
         
            +
              updateEnvironmentAction(callback?: (err: AWSError, data: DataZone.Types.UpdateEnvironmentActionOutput) => void): Request<DataZone.Types.UpdateEnvironmentActionOutput, AWSError>;
         
     | 
| 
       798 
854 
     | 
    
         
             
              /**
         
     | 
| 
       799 
855 
     | 
    
         
             
               * Updates the specified environment profile in Amazon DataZone.
         
     | 
| 
       800 
856 
     | 
    
         
             
               */
         
     | 
| 
         @@ -1002,6 +1058,12 @@ declare namespace DataZone { 
     | 
|
| 
       1002 
1058 
     | 
    
         
             
              export type AcceptSubscriptionRequestOutputSubscribedListingsList = SubscribedListing[];
         
     | 
| 
       1003 
1059 
     | 
    
         
             
              export type AcceptSubscriptionRequestOutputSubscribedPrincipalsList = SubscribedPrincipal[];
         
     | 
| 
       1004 
1060 
     | 
    
         
             
              export type ActionLink = string;
         
     | 
| 
      
 1061 
     | 
    
         
            +
              export interface ActionParameters {
         
     | 
| 
      
 1062 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1063 
     | 
    
         
            +
                 * The console link specified as part of the environment action.
         
     | 
| 
      
 1064 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1065 
     | 
    
         
            +
                awsConsoleLink?: AwsConsoleLinkParameters;
         
     | 
| 
      
 1066 
     | 
    
         
            +
              }
         
     | 
| 
       1005 
1067 
     | 
    
         
             
              export type ApplicableAssetTypes = TypeName[];
         
     | 
| 
       1006 
1068 
     | 
    
         
             
              export type AssetId = string;
         
     | 
| 
       1007 
1069 
     | 
    
         
             
              export type AssetIdentifier = string;
         
     | 
| 
         @@ -1271,11 +1333,33 @@ declare namespace DataZone { 
     | 
|
| 
       1271 
1333 
     | 
    
         
             
                 */
         
     | 
| 
       1272 
1334 
     | 
    
         
             
                updatedBy?: UpdatedBy;
         
     | 
| 
       1273 
1335 
     | 
    
         
             
              }
         
     | 
| 
      
 1336 
     | 
    
         
            +
              export interface AssociateEnvironmentRoleInput {
         
     | 
| 
      
 1337 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1338 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which the environment role is associated.
         
     | 
| 
      
 1339 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1340 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 1341 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1342 
     | 
    
         
            +
                 * The ID of the Amazon DataZone environment.
         
     | 
| 
      
 1343 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1344 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 1345 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1346 
     | 
    
         
            +
                 * The ARN of the environment role.
         
     | 
| 
      
 1347 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1348 
     | 
    
         
            +
                environmentRoleArn: String;
         
     | 
| 
      
 1349 
     | 
    
         
            +
              }
         
     | 
| 
      
 1350 
     | 
    
         
            +
              export interface AssociateEnvironmentRoleOutput {
         
     | 
| 
      
 1351 
     | 
    
         
            +
              }
         
     | 
| 
       1274 
1352 
     | 
    
         
             
              export type Attribute = string;
         
     | 
| 
       1275 
1353 
     | 
    
         
             
              export type AuthType = "IAM_IDC"|"DISABLED"|string;
         
     | 
| 
       1276 
1354 
     | 
    
         
             
              export type AuthorizedPrincipalIdentifier = string;
         
     | 
| 
       1277 
1355 
     | 
    
         
             
              export type AuthorizedPrincipalIdentifiers = AuthorizedPrincipalIdentifier[];
         
     | 
| 
       1278 
1356 
     | 
    
         
             
              export type AwsAccountId = string;
         
     | 
| 
      
 1357 
     | 
    
         
            +
              export interface AwsConsoleLinkParameters {
         
     | 
| 
      
 1358 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1359 
     | 
    
         
            +
                 * The URI of the console link specified as part of the environment action.
         
     | 
| 
      
 1360 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1361 
     | 
    
         
            +
                uri?: String;
         
     | 
| 
      
 1362 
     | 
    
         
            +
              }
         
     | 
| 
       1279 
1363 
     | 
    
         
             
              export type AwsRegion = string;
         
     | 
| 
       1280 
1364 
     | 
    
         
             
              export type Boolean = boolean;
         
     | 
| 
       1281 
1365 
     | 
    
         
             
              export interface BusinessNameGenerationConfiguration {
         
     | 
| 
         @@ -1906,6 +1990,54 @@ declare namespace DataZone { 
     | 
|
| 
       1906 
1990 
     | 
    
         
             
                 */
         
     | 
| 
       1907 
1991 
     | 
    
         
             
                tags?: Tags;
         
     | 
| 
       1908 
1992 
     | 
    
         
             
              }
         
     | 
| 
      
 1993 
     | 
    
         
            +
              export interface CreateEnvironmentActionInput {
         
     | 
| 
      
 1994 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1995 
     | 
    
         
            +
                 * The description of the environment action that is being created in the environment.
         
     | 
| 
      
 1996 
     | 
    
         
            +
                 */
         
     | 
| 
      
 1997 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 1998 
     | 
    
         
            +
                /**
         
     | 
| 
      
 1999 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which the environment action is created.
         
     | 
| 
      
 2000 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2001 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 2002 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2003 
     | 
    
         
            +
                 * The ID of the environment in which the environment action is created.
         
     | 
| 
      
 2004 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2005 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 2006 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2007 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 2008 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2009 
     | 
    
         
            +
                name: String;
         
     | 
| 
      
 2010 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2011 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 2012 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2013 
     | 
    
         
            +
                parameters: ActionParameters;
         
     | 
| 
      
 2014 
     | 
    
         
            +
              }
         
     | 
| 
      
 2015 
     | 
    
         
            +
              export interface CreateEnvironmentActionOutput {
         
     | 
| 
      
 2016 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2017 
     | 
    
         
            +
                 * The description of the environment action.
         
     | 
| 
      
 2018 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2019 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 2020 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2021 
     | 
    
         
            +
                 * The ID of the domain in which the environment action is created.
         
     | 
| 
      
 2022 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2023 
     | 
    
         
            +
                domainId: DomainId;
         
     | 
| 
      
 2024 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2025 
     | 
    
         
            +
                 * The ID of the environment in which the environment is created.
         
     | 
| 
      
 2026 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2027 
     | 
    
         
            +
                environmentId: EnvironmentId;
         
     | 
| 
      
 2028 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2029 
     | 
    
         
            +
                 * The ID of the environment action.
         
     | 
| 
      
 2030 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2031 
     | 
    
         
            +
                id: EnvironmentActionId;
         
     | 
| 
      
 2032 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2033 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 2034 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2035 
     | 
    
         
            +
                name: String;
         
     | 
| 
      
 2036 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2037 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 2038 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2039 
     | 
    
         
            +
                parameters: ActionParameters;
         
     | 
| 
      
 2040 
     | 
    
         
            +
              }
         
     | 
| 
       1909 
2041 
     | 
    
         
             
              export interface CreateEnvironmentInput {
         
     | 
| 
       1910 
2042 
     | 
    
         
             
                /**
         
     | 
| 
       1911 
2043 
     | 
    
         
             
                 * The description of the Amazon DataZone environment.
         
     | 
| 
         @@ -1915,6 +2047,18 @@ declare namespace DataZone { 
     | 
|
| 
       1915 
2047 
     | 
    
         
             
                 * The identifier of the Amazon DataZone domain in which the environment is created.
         
     | 
| 
       1916 
2048 
     | 
    
         
             
                 */
         
     | 
| 
       1917 
2049 
     | 
    
         
             
                domainIdentifier: DomainId;
         
     | 
| 
      
 2050 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2051 
     | 
    
         
            +
                 * The ID of the account in which the environment is being created.
         
     | 
| 
      
 2052 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2053 
     | 
    
         
            +
                environmentAccountIdentifier?: String;
         
     | 
| 
      
 2054 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2055 
     | 
    
         
            +
                 * The region of the account in which the environment is being created.
         
     | 
| 
      
 2056 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2057 
     | 
    
         
            +
                environmentAccountRegion?: String;
         
     | 
| 
      
 2058 
     | 
    
         
            +
                /**
         
     | 
| 
      
 2059 
     | 
    
         
            +
                 * The ID of the blueprint with which the environment is being created.
         
     | 
| 
      
 2060 
     | 
    
         
            +
                 */
         
     | 
| 
      
 2061 
     | 
    
         
            +
                environmentBlueprintIdentifier?: String;
         
     | 
| 
       1918 
2062 
     | 
    
         
             
                /**
         
     | 
| 
       1919 
2063 
     | 
    
         
             
                 * The identifier of the environment profile that is used to create this Amazon DataZone environment.
         
     | 
| 
       1920 
2064 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -1976,7 +2120,7 @@ declare namespace DataZone { 
     | 
|
| 
       1976 
2120 
     | 
    
         
             
                /**
         
     | 
| 
       1977 
2121 
     | 
    
         
             
                 * The ID of the environment profile with which this Amazon DataZone environment was created.
         
     | 
| 
       1978 
2122 
     | 
    
         
             
                 */
         
     | 
| 
       1979 
     | 
    
         
            -
                environmentProfileId 
     | 
| 
      
 2123 
     | 
    
         
            +
                environmentProfileId?: EnvironmentProfileId;
         
     | 
| 
       1980 
2124 
     | 
    
         
             
                /**
         
     | 
| 
       1981 
2125 
     | 
    
         
             
                 * The glossary terms that can be used in this Amazon DataZone environment.
         
     | 
| 
       1982 
2126 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -3024,6 +3168,10 @@ declare namespace DataZone { 
     | 
|
| 
       3024 
3168 
     | 
    
         
             
                 * The identifier of the data source that is deleted.
         
     | 
| 
       3025 
3169 
     | 
    
         
             
                 */
         
     | 
| 
       3026 
3170 
     | 
    
         
             
                identifier: DataSourceId;
         
     | 
| 
      
 3171 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3172 
     | 
    
         
            +
                 * Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.
         
     | 
| 
      
 3173 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3174 
     | 
    
         
            +
                retainPermissionsOnRevokeFailure?: Boolean;
         
     | 
| 
       3027 
3175 
     | 
    
         
             
              }
         
     | 
| 
       3028 
3176 
     | 
    
         
             
              export interface DeleteDataSourceOutput {
         
     | 
| 
       3029 
3177 
     | 
    
         
             
                /**
         
     | 
| 
         @@ -3086,10 +3234,18 @@ declare namespace DataZone { 
     | 
|
| 
       3086 
3234 
     | 
    
         
             
                 * Specifies whether the assets that this data source creates in the inventory are to be also automatically published to the catalog.
         
     | 
| 
       3087 
3235 
     | 
    
         
             
                 */
         
     | 
| 
       3088 
3236 
     | 
    
         
             
                publishOnImport?: Boolean;
         
     | 
| 
      
 3237 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3238 
     | 
    
         
            +
                 * Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.
         
     | 
| 
      
 3239 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3240 
     | 
    
         
            +
                retainPermissionsOnRevokeFailure?: Boolean;
         
     | 
| 
       3089 
3241 
     | 
    
         
             
                /**
         
     | 
| 
       3090 
3242 
     | 
    
         
             
                 * The schedule of runs for this data source.
         
     | 
| 
       3091 
3243 
     | 
    
         
             
                 */
         
     | 
| 
       3092 
3244 
     | 
    
         
             
                schedule?: ScheduleConfiguration;
         
     | 
| 
      
 3245 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3246 
     | 
    
         
            +
                 * Specifies the status of the self-granting functionality.
         
     | 
| 
      
 3247 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3248 
     | 
    
         
            +
                selfGrantStatus?: SelfGrantStatusOutput;
         
     | 
| 
       3093 
3249 
     | 
    
         
             
                /**
         
     | 
| 
       3094 
3250 
     | 
    
         
             
                 * The status of this data source.
         
     | 
| 
       3095 
3251 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -3123,6 +3279,20 @@ declare namespace DataZone { 
     | 
|
| 
       3123 
3279 
     | 
    
         
             
                 */
         
     | 
| 
       3124 
3280 
     | 
    
         
             
                status: DomainStatus;
         
     | 
| 
       3125 
3281 
     | 
    
         
             
              }
         
     | 
| 
      
 3282 
     | 
    
         
            +
              export interface DeleteEnvironmentActionInput {
         
     | 
| 
      
 3283 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3284 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which an environment action is deleted.
         
     | 
| 
      
 3285 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3286 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 3287 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3288 
     | 
    
         
            +
                 * The ID of the environment where an environment action is deleted.
         
     | 
| 
      
 3289 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3290 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 3291 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3292 
     | 
    
         
            +
                 * The ID of the environment action that is deleted.
         
     | 
| 
      
 3293 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3294 
     | 
    
         
            +
                identifier: String;
         
     | 
| 
      
 3295 
     | 
    
         
            +
              }
         
     | 
| 
       3126 
3296 
     | 
    
         
             
              export interface DeleteEnvironmentBlueprintConfigurationInput {
         
     | 
| 
       3127 
3297 
     | 
    
         
             
                /**
         
     | 
| 
       3128 
3298 
     | 
    
         
             
                 * The ID of the Amazon DataZone domain in which the blueprint configuration is deleted.
         
     | 
| 
         @@ -3393,6 +3563,22 @@ declare namespace DataZone { 
     | 
|
| 
       3393 
3563 
     | 
    
         
             
                shortDescription?: ShortDescription;
         
     | 
| 
       3394 
3564 
     | 
    
         
             
              }
         
     | 
| 
       3395 
3565 
     | 
    
         
             
              export type DetailedGlossaryTerms = DetailedGlossaryTerm[];
         
     | 
| 
      
 3566 
     | 
    
         
            +
              export interface DisassociateEnvironmentRoleInput {
         
     | 
| 
      
 3567 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3568 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which an environment role is disassociated.
         
     | 
| 
      
 3569 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3570 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 3571 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3572 
     | 
    
         
            +
                 * The ID of the environment.
         
     | 
| 
      
 3573 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3574 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 3575 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3576 
     | 
    
         
            +
                 * The ARN of the environment role.
         
     | 
| 
      
 3577 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3578 
     | 
    
         
            +
                environmentRoleArn: String;
         
     | 
| 
      
 3579 
     | 
    
         
            +
              }
         
     | 
| 
      
 3580 
     | 
    
         
            +
              export interface DisassociateEnvironmentRoleOutput {
         
     | 
| 
      
 3581 
     | 
    
         
            +
              }
         
     | 
| 
       3396 
3582 
     | 
    
         
             
              export type DomainDescription = string;
         
     | 
| 
       3397 
3583 
     | 
    
         
             
              export type DomainId = string;
         
     | 
| 
       3398 
3584 
     | 
    
         
             
              export type DomainName = string;
         
     | 
| 
         @@ -3442,7 +3628,34 @@ declare namespace DataZone { 
     | 
|
| 
       3442 
3628 
     | 
    
         
             
              export type EntityId = string;
         
     | 
| 
       3443 
3629 
     | 
    
         
             
              export type EntityIdentifier = string;
         
     | 
| 
       3444 
3630 
     | 
    
         
             
              export type EntityType = "ASSET"|string;
         
     | 
| 
      
 3631 
     | 
    
         
            +
              export type EnvironmentActionId = string;
         
     | 
| 
       3445 
3632 
     | 
    
         
             
              export type EnvironmentActionList = ConfigurableEnvironmentAction[];
         
     | 
| 
      
 3633 
     | 
    
         
            +
              export interface EnvironmentActionSummary {
         
     | 
| 
      
 3634 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3635 
     | 
    
         
            +
                 * The environment action description.
         
     | 
| 
      
 3636 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3637 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 3638 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3639 
     | 
    
         
            +
                 * The Amazon DataZone domain ID of the environment action.
         
     | 
| 
      
 3640 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3641 
     | 
    
         
            +
                domainId: DomainId;
         
     | 
| 
      
 3642 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3643 
     | 
    
         
            +
                 * The environment ID of the environment action.
         
     | 
| 
      
 3644 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3645 
     | 
    
         
            +
                environmentId: EnvironmentId;
         
     | 
| 
      
 3646 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3647 
     | 
    
         
            +
                 * The ID of the environment action.
         
     | 
| 
      
 3648 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3649 
     | 
    
         
            +
                id: EnvironmentActionId;
         
     | 
| 
      
 3650 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3651 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 3652 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3653 
     | 
    
         
            +
                name: String;
         
     | 
| 
      
 3654 
     | 
    
         
            +
                /**
         
     | 
| 
      
 3655 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 3656 
     | 
    
         
            +
                 */
         
     | 
| 
      
 3657 
     | 
    
         
            +
                parameters: ActionParameters;
         
     | 
| 
      
 3658 
     | 
    
         
            +
              }
         
     | 
| 
       3446 
3659 
     | 
    
         
             
              export interface EnvironmentBlueprintConfigurationItem {
         
     | 
| 
       3447 
3660 
     | 
    
         
             
                /**
         
     | 
| 
       3448 
3661 
     | 
    
         
             
                 * The timestamp of when an environment blueprint was created.
         
     | 
| 
         @@ -3613,7 +3826,7 @@ declare namespace DataZone { 
     | 
|
| 
       3613 
3826 
     | 
    
         
             
                /**
         
     | 
| 
       3614 
3827 
     | 
    
         
             
                 * The identifier of the environment profile with which the environment was created.
         
     | 
| 
       3615 
3828 
     | 
    
         
             
                 */
         
     | 
| 
       3616 
     | 
    
         
            -
                environmentProfileId 
     | 
| 
      
 3829 
     | 
    
         
            +
                environmentProfileId?: EnvironmentProfileId;
         
     | 
| 
       3617 
3830 
     | 
    
         
             
                /**
         
     | 
| 
       3618 
3831 
     | 
    
         
             
                 * The identifier of the environment.
         
     | 
| 
       3619 
3832 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -4047,6 +4260,10 @@ declare namespace DataZone { 
     | 
|
| 
       4047 
4260 
     | 
    
         
             
                 * The schedule of the data source runs.
         
     | 
| 
       4048 
4261 
     | 
    
         
             
                 */
         
     | 
| 
       4049 
4262 
     | 
    
         
             
                schedule?: ScheduleConfiguration;
         
     | 
| 
      
 4263 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4264 
     | 
    
         
            +
                 * Specifies the status of the self-granting functionality.
         
     | 
| 
      
 4265 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4266 
     | 
    
         
            +
                selfGrantStatus?: SelfGrantStatusOutput;
         
     | 
| 
       4050 
4267 
     | 
    
         
             
                /**
         
     | 
| 
       4051 
4268 
     | 
    
         
             
                 * The status of the data source.
         
     | 
| 
       4052 
4269 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -4180,6 +4397,46 @@ declare namespace DataZone { 
     | 
|
| 
       4180 
4397 
     | 
    
         
             
                 */
         
     | 
| 
       4181 
4398 
     | 
    
         
             
                tags?: Tags;
         
     | 
| 
       4182 
4399 
     | 
    
         
             
              }
         
     | 
| 
      
 4400 
     | 
    
         
            +
              export interface GetEnvironmentActionInput {
         
     | 
| 
      
 4401 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4402 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which the GetEnvironmentAction API is invoked. 
         
     | 
| 
      
 4403 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4404 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 4405 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4406 
     | 
    
         
            +
                 * The environment ID of the environment action.
         
     | 
| 
      
 4407 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4408 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 4409 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4410 
     | 
    
         
            +
                 * The ID of the environment action
         
     | 
| 
      
 4411 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4412 
     | 
    
         
            +
                identifier: String;
         
     | 
| 
      
 4413 
     | 
    
         
            +
              }
         
     | 
| 
      
 4414 
     | 
    
         
            +
              export interface GetEnvironmentActionOutput {
         
     | 
| 
      
 4415 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4416 
     | 
    
         
            +
                 * The description of the environment action.
         
     | 
| 
      
 4417 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4418 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 4419 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4420 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which the environment action lives.
         
     | 
| 
      
 4421 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4422 
     | 
    
         
            +
                domainId: DomainId;
         
     | 
| 
      
 4423 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4424 
     | 
    
         
            +
                 * The environment ID of the environment action.
         
     | 
| 
      
 4425 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4426 
     | 
    
         
            +
                environmentId: EnvironmentId;
         
     | 
| 
      
 4427 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4428 
     | 
    
         
            +
                 * The ID of the environment action.
         
     | 
| 
      
 4429 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4430 
     | 
    
         
            +
                id: EnvironmentActionId;
         
     | 
| 
      
 4431 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4432 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 4433 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4434 
     | 
    
         
            +
                name: String;
         
     | 
| 
      
 4435 
     | 
    
         
            +
                /**
         
     | 
| 
      
 4436 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 4437 
     | 
    
         
            +
                 */
         
     | 
| 
      
 4438 
     | 
    
         
            +
                parameters: ActionParameters;
         
     | 
| 
      
 4439 
     | 
    
         
            +
              }
         
     | 
| 
       4183 
4440 
     | 
    
         
             
              export interface GetEnvironmentBlueprintConfigurationInput {
         
     | 
| 
       4184 
4441 
     | 
    
         
             
                /**
         
     | 
| 
       4185 
4442 
     | 
    
         
             
                 * The ID of the Amazon DataZone domain where this blueprint exists.
         
     | 
| 
         @@ -4326,7 +4583,7 @@ declare namespace DataZone { 
     | 
|
| 
       4326 
4583 
     | 
    
         
             
                /**
         
     | 
| 
       4327 
4584 
     | 
    
         
             
                 * The ID of the environment profile with which the environment is created.
         
     | 
| 
       4328 
4585 
     | 
    
         
             
                 */
         
     | 
| 
       4329 
     | 
    
         
            -
                environmentProfileId 
     | 
| 
      
 4586 
     | 
    
         
            +
                environmentProfileId?: EnvironmentProfileId;
         
     | 
| 
       4330 
4587 
     | 
    
         
             
                /**
         
     | 
| 
       4331 
4588 
     | 
    
         
             
                 * The business glossary terms that can be used in this environment.
         
     | 
| 
       4332 
4589 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -5275,6 +5532,12 @@ declare namespace DataZone { 
     | 
|
| 
       5275 
5532 
     | 
    
         
             
              export type GlueRunConfigurationOutputAccountIdString = string;
         
     | 
| 
       5276 
5533 
     | 
    
         
             
              export type GlueRunConfigurationOutputDataAccessRoleString = string;
         
     | 
| 
       5277 
5534 
     | 
    
         
             
              export type GlueRunConfigurationOutputRegionString = string;
         
     | 
| 
      
 5535 
     | 
    
         
            +
              export interface GlueSelfGrantStatusOutput {
         
     | 
| 
      
 5536 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5537 
     | 
    
         
            +
                 * The details for the self granting status for a Glue data source.
         
     | 
| 
      
 5538 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5539 
     | 
    
         
            +
                selfGrantStatusDetails: SelfGrantStatusDetails;
         
     | 
| 
      
 5540 
     | 
    
         
            +
              }
         
     | 
| 
       5278 
5541 
     | 
    
         
             
              export interface GrantedEntity {
         
     | 
| 
       5279 
5542 
     | 
    
         
             
                /**
         
     | 
| 
       5280 
5543 
     | 
    
         
             
                 * The listing for which a subscription is granted.
         
     | 
| 
         @@ -5499,6 +5762,35 @@ declare namespace DataZone { 
     | 
|
| 
       5499 
5762 
     | 
    
         
             
                 */
         
     | 
| 
       5500 
5763 
     | 
    
         
             
                nextToken?: PaginationToken;
         
     | 
| 
       5501 
5764 
     | 
    
         
             
              }
         
     | 
| 
      
 5765 
     | 
    
         
            +
              export type ListEnvironmentActionSummaries = EnvironmentActionSummary[];
         
     | 
| 
      
 5766 
     | 
    
         
            +
              export interface ListEnvironmentActionsInput {
         
     | 
| 
      
 5767 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5768 
     | 
    
         
            +
                 * The ID of the Amazon DataZone domain in which the environment actions are listed.
         
     | 
| 
      
 5769 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5770 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 5771 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5772 
     | 
    
         
            +
                 * The ID of the envrironment whose environment actions are listed.
         
     | 
| 
      
 5773 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5774 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 5775 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5776 
     | 
    
         
            +
                 * The maximum number of environment actions to return in a single call to ListEnvironmentActions. When the number of environment actions to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListEnvironmentActions to list the next set of environment actions.
         
     | 
| 
      
 5777 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5778 
     | 
    
         
            +
                maxResults?: MaxResults;
         
     | 
| 
      
 5779 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5780 
     | 
    
         
            +
                 * When the number of environment actions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of environment actions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentActions to list the next set of environment actions.
         
     | 
| 
      
 5781 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5782 
     | 
    
         
            +
                nextToken?: PaginationToken;
         
     | 
| 
      
 5783 
     | 
    
         
            +
              }
         
     | 
| 
      
 5784 
     | 
    
         
            +
              export interface ListEnvironmentActionsOutput {
         
     | 
| 
      
 5785 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5786 
     | 
    
         
            +
                 * The results of ListEnvironmentActions.
         
     | 
| 
      
 5787 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5788 
     | 
    
         
            +
                items?: ListEnvironmentActionSummaries;
         
     | 
| 
      
 5789 
     | 
    
         
            +
                /**
         
     | 
| 
      
 5790 
     | 
    
         
            +
                 * When the number of environment actions is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of environment actions, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListEnvironmentActions to list the next set of environment actions.
         
     | 
| 
      
 5791 
     | 
    
         
            +
                 */
         
     | 
| 
      
 5792 
     | 
    
         
            +
                nextToken?: PaginationToken;
         
     | 
| 
      
 5793 
     | 
    
         
            +
              }
         
     | 
| 
       5502 
5794 
     | 
    
         
             
              export interface ListEnvironmentBlueprintConfigurationsInput {
         
     | 
| 
       5503 
5795 
     | 
    
         
             
                /**
         
     | 
| 
       5504 
5796 
     | 
    
         
             
                 * The identifier of the Amazon DataZone domain.
         
     | 
| 
         @@ -6455,6 +6747,12 @@ declare namespace DataZone { 
     | 
|
| 
       6455 
6747 
     | 
    
         
             
              export type RedshiftRunConfigurationOutputAccountIdString = string;
         
     | 
| 
       6456 
6748 
     | 
    
         
             
              export type RedshiftRunConfigurationOutputDataAccessRoleString = string;
         
     | 
| 
       6457 
6749 
     | 
    
         
             
              export type RedshiftRunConfigurationOutputRegionString = string;
         
     | 
| 
      
 6750 
     | 
    
         
            +
              export interface RedshiftSelfGrantStatusOutput {
         
     | 
| 
      
 6751 
     | 
    
         
            +
                /**
         
     | 
| 
      
 6752 
     | 
    
         
            +
                 * The details for the self granting status for an Amazon Redshift data source.
         
     | 
| 
      
 6753 
     | 
    
         
            +
                 */
         
     | 
| 
      
 6754 
     | 
    
         
            +
                selfGrantStatusDetails: SelfGrantStatusDetails;
         
     | 
| 
      
 6755 
     | 
    
         
            +
              }
         
     | 
| 
       6458 
6756 
     | 
    
         
             
              export interface RedshiftServerlessStorage {
         
     | 
| 
       6459 
6757 
     | 
    
         
             
                /**
         
     | 
| 
       6460 
6758 
     | 
    
         
             
                 * The name of the Amazon Redshift Serverless workgroup.
         
     | 
| 
         @@ -7011,6 +7309,38 @@ declare namespace DataZone { 
     | 
|
| 
       7011 
7309 
     | 
    
         
             
                 */
         
     | 
| 
       7012 
7310 
     | 
    
         
             
                nextToken?: PaginationToken;
         
     | 
| 
       7013 
7311 
     | 
    
         
             
              }
         
     | 
| 
      
 7312 
     | 
    
         
            +
              export type SelfGrantStatus = "GRANT_PENDING"|"REVOKE_PENDING"|"GRANT_IN_PROGRESS"|"REVOKE_IN_PROGRESS"|"GRANTED"|"GRANT_FAILED"|"REVOKE_FAILED"|string;
         
     | 
| 
      
 7313 
     | 
    
         
            +
              export interface SelfGrantStatusDetail {
         
     | 
| 
      
 7314 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7315 
     | 
    
         
            +
                 * The name of the database used for the data source.
         
     | 
| 
      
 7316 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7317 
     | 
    
         
            +
                databaseName: SelfGrantStatusDetailDatabaseNameString;
         
     | 
| 
      
 7318 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7319 
     | 
    
         
            +
                 * The reason for why the operation failed.
         
     | 
| 
      
 7320 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7321 
     | 
    
         
            +
                failureCause?: String;
         
     | 
| 
      
 7322 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7323 
     | 
    
         
            +
                 * The name of the schema used in the data source.
         
     | 
| 
      
 7324 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7325 
     | 
    
         
            +
                schemaName?: SelfGrantStatusDetailSchemaNameString;
         
     | 
| 
      
 7326 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7327 
     | 
    
         
            +
                 * The self granting status of the data source.
         
     | 
| 
      
 7328 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7329 
     | 
    
         
            +
                status: SelfGrantStatus;
         
     | 
| 
      
 7330 
     | 
    
         
            +
              }
         
     | 
| 
      
 7331 
     | 
    
         
            +
              export type SelfGrantStatusDetailDatabaseNameString = string;
         
     | 
| 
      
 7332 
     | 
    
         
            +
              export type SelfGrantStatusDetailSchemaNameString = string;
         
     | 
| 
      
 7333 
     | 
    
         
            +
              export type SelfGrantStatusDetails = SelfGrantStatusDetail[];
         
     | 
| 
      
 7334 
     | 
    
         
            +
              export interface SelfGrantStatusOutput {
         
     | 
| 
      
 7335 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7336 
     | 
    
         
            +
                 * The details for the self granting status for a Glue data source.
         
     | 
| 
      
 7337 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7338 
     | 
    
         
            +
                glueSelfGrantStatus?: GlueSelfGrantStatusOutput;
         
     | 
| 
      
 7339 
     | 
    
         
            +
                /**
         
     | 
| 
      
 7340 
     | 
    
         
            +
                 * The details for the self granting status for an Amazon Redshift data source.
         
     | 
| 
      
 7341 
     | 
    
         
            +
                 */
         
     | 
| 
      
 7342 
     | 
    
         
            +
                redshiftSelfGrantStatus?: RedshiftSelfGrantStatusOutput;
         
     | 
| 
      
 7343 
     | 
    
         
            +
              }
         
     | 
| 
       7014 
7344 
     | 
    
         
             
              export type ShortDescription = string;
         
     | 
| 
       7015 
7345 
     | 
    
         
             
              export interface SingleSignOn {
         
     | 
| 
       7016 
7346 
     | 
    
         
             
                /**
         
     | 
| 
         @@ -7695,6 +8025,10 @@ declare namespace DataZone { 
     | 
|
| 
       7695 
8025 
     | 
    
         
             
                 * The recommendation to be updated as part of the UpdateDataSource action.
         
     | 
| 
       7696 
8026 
     | 
    
         
             
                 */
         
     | 
| 
       7697 
8027 
     | 
    
         
             
                recommendation?: RecommendationConfiguration;
         
     | 
| 
      
 8028 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8029 
     | 
    
         
            +
                 * Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.
         
     | 
| 
      
 8030 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8031 
     | 
    
         
            +
                retainPermissionsOnRevokeFailure?: Boolean;
         
     | 
| 
       7698 
8032 
     | 
    
         
             
                /**
         
     | 
| 
       7699 
8033 
     | 
    
         
             
                 * The schedule to be updated as part of the UpdateDataSource action.
         
     | 
| 
       7700 
8034 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -7765,10 +8099,18 @@ declare namespace DataZone { 
     | 
|
| 
       7765 
8099 
     | 
    
         
             
                 * The recommendation to be updated as part of the UpdateDataSource action.
         
     | 
| 
       7766 
8100 
     | 
    
         
             
                 */
         
     | 
| 
       7767 
8101 
     | 
    
         
             
                recommendation?: RecommendationConfiguration;
         
     | 
| 
      
 8102 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8103 
     | 
    
         
            +
                 * Specifies that the granted permissions are retained in case of a self-subscribe functionality failure for a data source.
         
     | 
| 
      
 8104 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8105 
     | 
    
         
            +
                retainPermissionsOnRevokeFailure?: Boolean;
         
     | 
| 
       7768 
8106 
     | 
    
         
             
                /**
         
     | 
| 
       7769 
8107 
     | 
    
         
             
                 * The schedule to be updated as part of the UpdateDataSource action.
         
     | 
| 
       7770 
8108 
     | 
    
         
             
                 */
         
     | 
| 
       7771 
8109 
     | 
    
         
             
                schedule?: ScheduleConfiguration;
         
     | 
| 
      
 8110 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8111 
     | 
    
         
            +
                 * Specifies the status of the self-granting functionality.
         
     | 
| 
      
 8112 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8113 
     | 
    
         
            +
                selfGrantStatus?: SelfGrantStatusOutput;
         
     | 
| 
       7772 
8114 
     | 
    
         
             
                /**
         
     | 
| 
       7773 
8115 
     | 
    
         
             
                 * The status to be updated as part of the UpdateDataSource action.
         
     | 
| 
       7774 
8116 
     | 
    
         
             
                 */
         
     | 
| 
         @@ -7834,6 +8176,58 @@ declare namespace DataZone { 
     | 
|
| 
       7834 
8176 
     | 
    
         
             
                 */
         
     | 
| 
       7835 
8177 
     | 
    
         
             
                singleSignOn?: SingleSignOn;
         
     | 
| 
       7836 
8178 
     | 
    
         
             
              }
         
     | 
| 
      
 8179 
     | 
    
         
            +
              export interface UpdateEnvironmentActionInput {
         
     | 
| 
      
 8180 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8181 
     | 
    
         
            +
                 * The description of the environment action.
         
     | 
| 
      
 8182 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8183 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 8184 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8185 
     | 
    
         
            +
                 * The domain ID of the environment action.
         
     | 
| 
      
 8186 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8187 
     | 
    
         
            +
                domainIdentifier: DomainId;
         
     | 
| 
      
 8188 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8189 
     | 
    
         
            +
                 * The environment ID of the environment action.
         
     | 
| 
      
 8190 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8191 
     | 
    
         
            +
                environmentIdentifier: EnvironmentId;
         
     | 
| 
      
 8192 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8193 
     | 
    
         
            +
                 * The ID of the environment action.
         
     | 
| 
      
 8194 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8195 
     | 
    
         
            +
                identifier: String;
         
     | 
| 
      
 8196 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8197 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 8198 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8199 
     | 
    
         
            +
                name?: String;
         
     | 
| 
      
 8200 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8201 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 8202 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8203 
     | 
    
         
            +
                parameters?: ActionParameters;
         
     | 
| 
      
 8204 
     | 
    
         
            +
              }
         
     | 
| 
      
 8205 
     | 
    
         
            +
              export interface UpdateEnvironmentActionOutput {
         
     | 
| 
      
 8206 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8207 
     | 
    
         
            +
                 * The description of the environment action.
         
     | 
| 
      
 8208 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8209 
     | 
    
         
            +
                description?: String;
         
     | 
| 
      
 8210 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8211 
     | 
    
         
            +
                 * The domain ID of the environment action.
         
     | 
| 
      
 8212 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8213 
     | 
    
         
            +
                domainId: DomainId;
         
     | 
| 
      
 8214 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8215 
     | 
    
         
            +
                 * The environment ID of the environment action.
         
     | 
| 
      
 8216 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8217 
     | 
    
         
            +
                environmentId: EnvironmentId;
         
     | 
| 
      
 8218 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8219 
     | 
    
         
            +
                 * The ID of the environment action.
         
     | 
| 
      
 8220 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8221 
     | 
    
         
            +
                id: EnvironmentActionId;
         
     | 
| 
      
 8222 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8223 
     | 
    
         
            +
                 * The name of the environment action.
         
     | 
| 
      
 8224 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8225 
     | 
    
         
            +
                name: String;
         
     | 
| 
      
 8226 
     | 
    
         
            +
                /**
         
     | 
| 
      
 8227 
     | 
    
         
            +
                 * The parameters of the environment action.
         
     | 
| 
      
 8228 
     | 
    
         
            +
                 */
         
     | 
| 
      
 8229 
     | 
    
         
            +
                parameters: ActionParameters;
         
     | 
| 
      
 8230 
     | 
    
         
            +
              }
         
     | 
| 
       7837 
8231 
     | 
    
         
             
              export interface UpdateEnvironmentInput {
         
     | 
| 
       7838 
8232 
     | 
    
         
             
                /**
         
     | 
| 
       7839 
8233 
     | 
    
         
             
                 * The description to be updated as part of the UpdateEnvironment action.
         
     | 
| 
         @@ -7896,7 +8290,7 @@ declare namespace DataZone { 
     | 
|
| 
       7896 
8290 
     | 
    
         
             
                /**
         
     | 
| 
       7897 
8291 
     | 
    
         
             
                 * The profile identifier of the environment.
         
     | 
| 
       7898 
8292 
     | 
    
         
             
                 */
         
     | 
| 
       7899 
     | 
    
         
            -
                environmentProfileId 
     | 
| 
      
 8293 
     | 
    
         
            +
                environmentProfileId?: EnvironmentProfileId;
         
     | 
| 
       7900 
8294 
     | 
    
         
             
                /**
         
     | 
| 
       7901 
8295 
     | 
    
         
             
                 * The glossary terms to be updated as part of the UpdateEnvironment action.
         
     | 
| 
       7902 
8296 
     | 
    
         
             
                 */
         
     |