cdk-comprehend-s3olap 2.0.77 → 2.0.78

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.
@@ -568,11 +568,11 @@ declare class ConfigService extends Service {
568
568
  */
569
569
  putConfigurationRecorder(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
570
570
  /**
571
- * Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify either the TemplateS3Uri or the TemplateBody parameter, but not both. If you provide both Config uses the TemplateS3Uri parameter and ignores the TemplateBody parameter.
571
+ * Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify one and only one of theTemplateS3Uri, TemplateBody or TemplateSSMDocumentDetails parameters.
572
572
  */
573
573
  putConformancePack(params: ConfigService.Types.PutConformancePackRequest, callback?: (err: AWSError, data: ConfigService.Types.PutConformancePackResponse) => void): Request<ConfigService.Types.PutConformancePackResponse, AWSError>;
574
574
  /**
575
- * Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify either the TemplateS3Uri or the TemplateBody parameter, but not both. If you provide both Config uses the TemplateS3Uri parameter and ignores the TemplateBody parameter.
575
+ * Creates or updates a conformance pack. A conformance pack is a collection of Config rules that can be easily deployed in an account and a region and across Amazon Web Services Organization. For information on how many conformance packs you can have per account, see Service Limits in the Config Developer Guide. This API creates a service-linked role AWSServiceRoleForConfigConforms in your account. The service-linked role is created only when the role does not exist in your account. You must specify one and only one of theTemplateS3Uri, TemplateBody or TemplateSSMDocumentDetails parameters.
576
576
  */
577
577
  putConformancePack(callback?: (err: AWSError, data: ConfigService.Types.PutConformancePackResponse) => void): Request<ConfigService.Types.PutConformancePackResponse, AWSError>;
578
578
  /**
@@ -1569,13 +1569,17 @@ declare namespace ConfigService {
1569
1569
  */
1570
1570
  ConformancePackInputParameters?: ConformancePackInputParameters;
1571
1571
  /**
1572
- * Last time when conformation pack update was requested.
1572
+ * The last time a conformation pack update was requested.
1573
1573
  */
1574
1574
  LastUpdateRequestedTime?: _Date;
1575
1575
  /**
1576
- * Amazon Web Services service that created the conformance pack.
1576
+ * The Amazon Web Services service that created the conformance pack.
1577
1577
  */
1578
1578
  CreatedBy?: StringWithCharLimit256;
1579
+ /**
1580
+ * An object that contains the name or Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.
1581
+ */
1582
+ TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
1579
1583
  }
1580
1584
  export type ConformancePackDetailList = ConformancePackDetail[];
1581
1585
  export interface ConformancePackEvaluationFilters {
@@ -3661,15 +3665,15 @@ declare namespace ConfigService {
3661
3665
  }
3662
3666
  export interface PutConformancePackRequest {
3663
3667
  /**
3664
- * Name of the conformance pack you want to create.
3668
+ * The unique name of the conformance pack you want to deploy.
3665
3669
  */
3666
3670
  ConformancePackName: ConformancePackName;
3667
3671
  /**
3668
- * Location of file containing the template body (s3://bucketname/prefix). The uri must point to the conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack. You must have access to read Amazon S3 bucket.
3672
+ * The location of the file containing the template body (s3://bucketname/prefix). The uri must point to a conformance pack template (max size: 300 KB) that is located in an Amazon S3 bucket in the same region as the conformance pack. You must have access to read Amazon S3 bucket.
3669
3673
  */
3670
3674
  TemplateS3Uri?: TemplateS3Uri;
3671
3675
  /**
3672
- * A string containing full conformance pack template body. Structure containing the template body with a minimum length of 1 byte and a maximum length of 51,200 bytes. You can only use a YAML template with two resource types: Config rule (AWS::Config::ConfigRule) and a remediation action (AWS::Config::RemediationConfiguration).
3676
+ * A string containing the full conformance pack template body. The structure containing the template body has a minimum length of 1 byte and a maximum length of 51,200 bytes. You can only use a YAML template with two resource types: Config rule (AWS::Config::ConfigRule) and remediation action (AWS::Config::RemediationConfiguration).
3673
3677
  */
3674
3678
  TemplateBody?: TemplateBody;
3675
3679
  /**
@@ -3684,6 +3688,10 @@ declare namespace ConfigService {
3684
3688
  * A list of ConformancePackInputParameter objects.
3685
3689
  */
3686
3690
  ConformancePackInputParameters?: ConformancePackInputParameters;
3691
+ /**
3692
+ * An object of type TemplateSSMDocumentDetails, which contains the name or the Amazon Resource Name (ARN) of the Amazon Web Services Systems Manager document (SSM document) and the version of the SSM document that is used to create a conformance pack.
3693
+ */
3694
+ TemplateSSMDocumentDetails?: TemplateSSMDocumentDetails;
3687
3695
  }
3688
3696
  export interface PutConformancePackResponse {
3689
3697
  /**
@@ -4183,6 +4191,8 @@ declare namespace ConfigService {
4183
4191
  export type RetentionConfigurationNameList = RetentionConfigurationName[];
4184
4192
  export type RetentionPeriodInDays = number;
4185
4193
  export type RuleLimit = number;
4194
+ export type SSMDocumentName = string;
4195
+ export type SSMDocumentVersion = string;
4186
4196
  export type SchemaVersionId = string;
4187
4197
  export interface Scope {
4188
4198
  /**
@@ -4446,6 +4456,16 @@ declare namespace ConfigService {
4446
4456
  export type TagsList = Tag[];
4447
4457
  export type TemplateBody = string;
4448
4458
  export type TemplateS3Uri = string;
4459
+ export interface TemplateSSMDocumentDetails {
4460
+ /**
4461
+ * The name or Amazon Resource Name (ARN) of the SSM document to use to create a conformance pack. If you use the Document Name, Config checks only your account and region for the SSM document. If you want to use an SSM document from another region or account, you must provide the ARN.
4462
+ */
4463
+ DocumentName: SSMDocumentName;
4464
+ /**
4465
+ * The version of the SSM document to use to create a conformance pack. By default, Config uses the latest version. This field is optional.
4466
+ */
4467
+ DocumentVersion?: SSMDocumentVersion;
4468
+ }
4449
4469
  export type UnprocessedResourceIdentifierList = AggregateResourceIdentifier[];
4450
4470
  export interface UntagResourceRequest {
4451
4471
  /**
@@ -609,11 +609,11 @@ declare class IAM extends Service {
609
609
  */
610
610
  getUserPolicy(callback?: (err: AWSError, data: IAM.Types.GetUserPolicyResponse) => void): Request<IAM.Types.GetUserPolicyResponse, AWSError>;
611
611
  /**
612
- * Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName field is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
612
+ * Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
613
613
  */
614
614
  listAccessKeys(params: IAM.Types.ListAccessKeysRequest, callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
615
615
  /**
616
- * Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName field is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
616
+ * Returns information about the access key IDs associated with the specified IAM user. If there is none, the operation returns an empty list. Although each user is limited to a small number of keys, you can still paginate the results using the MaxItems and Marker parameters. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. To ensure the security of your Amazon Web Services account, the secret access key is accessible only during key and user creation.
617
617
  */
618
618
  listAccessKeys(callback?: (err: AWSError, data: IAM.Types.ListAccessKeysResponse) => void): Request<IAM.Types.ListAccessKeysResponse, AWSError>;
619
619
  /**
@@ -1121,11 +1121,11 @@ declare class IAM extends Service {
1121
1121
  */
1122
1122
  untagUser(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
1123
1123
  /**
1124
- * Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
1124
+ * Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
1125
1125
  */
1126
1126
  updateAccessKey(params: IAM.Types.UpdateAccessKeyRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
1127
1127
  /**
1128
- * Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
1128
+ * Changes the status of the specified access key from Active to Inactive, or vice versa. This operation can be used to disable a user's key as part of a key rotation workflow. If the UserName is not specified, the user name is determined implicitly based on the Amazon Web Services access key ID used to sign the request. If a temporary access key is used, then UserName is required. If a long-term key is assigned to the user, then UserName is not required. This operation works for access keys under the Amazon Web Services account. Consequently, you can use this operation to manage Amazon Web Services account root user credentials even if the Amazon Web Services account has no associated users. For information about rotating keys, see Managing keys and certificates in the IAM User Guide.
1129
1129
  */
1130
1130
  updateAccessKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
1131
1131
  /**
@@ -4519,7 +4519,7 @@ declare namespace IAM {
4519
4519
  */
4520
4520
  ContextEntries?: ContextEntryListType;
4521
4521
  /**
4522
- * Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security-group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network-interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-Classic-InstanceStore instance, image, security-group EC2-Classic-EBS instance, image, security-group, volume EC2-VPC-InstanceStore instance, image, security-group, network-interface EC2-VPC-InstanceStore-Subnet instance, image, security-group, network-interface, subnet EC2-VPC-EBS instance, image, security-group, network-interface, volume EC2-VPC-EBS-Subnet instance, image, security-group, network-interface, subnet, volume
4522
+ * Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-VPC-InstanceStore instance, image, security group, network interface EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet EC2-VPC-EBS instance, image, security group, network interface, volume EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume
4523
4523
  */
4524
4524
  ResourceHandlingOption?: ResourceHandlingOptionType;
4525
4525
  /**
@@ -4583,7 +4583,7 @@ declare namespace IAM {
4583
4583
  */
4584
4584
  ContextEntries?: ContextEntryListType;
4585
4585
  /**
4586
- * Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-Classic-InstanceStore instance, image, security group EC2-Classic-EBS instance, image, security group, volume EC2-VPC-InstanceStore instance, image, security group, network interface EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet EC2-VPC-EBS instance, image, security group, network interface, volume EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume
4586
+ * Specifies the type of simulation to run. Different API operations that support resource-based policies require different combinations of resources. By specifying the type of simulation to run, you enable the policy simulator to enforce the presence of the required resources to ensure reliable simulation results. If your simulation does not match one of the following scenarios, then you can omit this parameter. The following list shows each of the supported scenario values and the resources that you must define to run the simulation. Each of the EC2 scenarios requires that you specify instance, image, and security group resources. If your scenario includes an EBS volume, then you must specify that volume as a resource. If the EC2 scenario includes VPC, then you must supply the network interface resource. If it includes an IP subnet, then you must specify the subnet resource. For more information on the EC2 scenario options, see Supported platforms in the Amazon EC2 User Guide. EC2-VPC-InstanceStore instance, image, security group, network interface EC2-VPC-InstanceStore-Subnet instance, image, security group, network interface, subnet EC2-VPC-EBS instance, image, security group, network interface, volume EC2-VPC-EBS-Subnet instance, image, security group, network interface, subnet, volume
4587
4587
  */
4588
4588
  ResourceHandlingOption?: ResourceHandlingOptionType;
4589
4589
  /**
@@ -337,7 +337,7 @@ declare namespace IVS {
337
337
  */
338
338
  tags?: Tags;
339
339
  /**
340
- * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. BASIC: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
340
+ * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
341
341
  */
342
342
  type?: ChannelType;
343
343
  }
@@ -397,7 +397,7 @@ declare namespace IVS {
397
397
  */
398
398
  tags?: Tags;
399
399
  /**
400
- * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. BASIC: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
400
+ * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Default: STANDARD. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
401
401
  */
402
402
  type?: ChannelType;
403
403
  }
@@ -1100,7 +1100,7 @@ declare namespace IVS {
1100
1100
  */
1101
1101
  recordingConfigurationArn?: ChannelRecordingConfigurationArn;
1102
1102
  /**
1103
- * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD: Multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. BASIC: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 480p and bitrate can be up to 1.5 Mbps.
1103
+ * Channel type, which determines the allowable resolution and bitrate. If you exceed the allowable resolution or bitrate, the stream probably will disconnect immediately. Valid values: STANDARD: Video is transcoded: multiple qualities are generated from the original input, to automatically give viewers the best experience for their devices and network conditions. Transcoding allows higher playback quality across a range of download speeds. Resolution can be up to 1080p and bitrate can be up to 8.5 Mbps. Audio is transcoded only for renditions 360p and below; above that, audio is passed through. This is the default. BASIC: Video is transmuxed: Amazon IVS delivers the original input to viewers. The viewer’s video-quality choice is limited to the original input. Resolution can be up to 1080p and bitrate can be up to 1.5 Mbps for 480p and up to 3.5 Mbps for resolutions between 480p and 1080p.
1104
1104
  */
1105
1105
  type?: ChannelType;
1106
1106
  }
@@ -508,11 +508,11 @@ declare class QuickSight extends Service {
508
508
  */
509
509
  describeUser(callback?: (err: AWSError, data: QuickSight.Types.DescribeUserResponse) => void): Request<QuickSight.Types.DescribeUserResponse, AWSError>;
510
510
  /**
511
- * Generates an embed URL that you can use to embed an Amazon QuickSight dashboard in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
511
+ * Generates an embed URL that you can use to embed an Amazon QuickSight dashboard or visual in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
512
512
  */
513
513
  generateEmbedUrlForAnonymousUser(params: QuickSight.Types.GenerateEmbedUrlForAnonymousUserRequest, callback?: (err: AWSError, data: QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse) => void): Request<QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse, AWSError>;
514
514
  /**
515
- * Generates an embed URL that you can use to embed an Amazon QuickSight dashboard in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
515
+ * Generates an embed URL that you can use to embed an Amazon QuickSight dashboard or visual in your website, without having to register any reader users. Before you use this action, make sure that you have configured the dashboards and permissions. The following rules apply to the generated URL: It contains a temporary bearer token. It is valid for 5 minutes after it is generated. Once redeemed within this period, it cannot be re-used again. The URL validity period should not be confused with the actual session lifetime that can be customized using the SessionLifetimeInMinutes parameter. The resulting user session is valid for 15 minutes (minimum) to 10 hours (maximum). The default session duration is 10 hours. You are charged only when the URL is used or there is interaction with Amazon QuickSight. For more information, see Embedded Analytics in the Amazon QuickSight User Guide. For more information about the high-level steps for embedding and for an interactive demo of the ways you can customize embedding, visit the Amazon QuickSight Developer Portal.
516
516
  */
517
517
  generateEmbedUrlForAnonymousUser(callback?: (err: AWSError, data: QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse) => void): Request<QuickSight.Types.GenerateEmbedUrlForAnonymousUserResponse, AWSError>;
518
518
  /**
@@ -1179,11 +1179,21 @@ declare namespace QuickSight {
1179
1179
  */
1180
1180
  InitialDashboardId: RestrictiveResourceId;
1181
1181
  }
1182
+ export interface AnonymousUserDashboardVisualEmbeddingConfiguration {
1183
+ /**
1184
+ * The visual ID for the visual that you want the user to see. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual. The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
1185
+ */
1186
+ InitialDashboardVisualId: DashboardVisualId;
1187
+ }
1182
1188
  export interface AnonymousUserEmbeddingExperienceConfiguration {
1183
1189
  /**
1184
1190
  * The type of embedding experience. In this case, Amazon QuickSight dashboards.
1185
1191
  */
1186
1192
  Dashboard?: AnonymousUserDashboardEmbeddingConfiguration;
1193
+ /**
1194
+ * The type of embedding experience. In this case, Amazon QuickSight visuals.
1195
+ */
1196
+ DashboardVisual?: AnonymousUserDashboardVisualEmbeddingConfiguration;
1187
1197
  }
1188
1198
  export type Arn = string;
1189
1199
  export type ArnList = Arn[];
@@ -2468,6 +2478,20 @@ declare namespace QuickSight {
2468
2478
  Description?: VersionDescription;
2469
2479
  }
2470
2480
  export type DashboardVersionSummaryList = DashboardVersionSummary[];
2481
+ export interface DashboardVisualId {
2482
+ /**
2483
+ * The ID of the dashboard that has the visual that you want to embed. The DashboardId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console. You can also get the DashboardId with a ListDashboards API operation.
2484
+ */
2485
+ DashboardId: RestrictiveResourceId;
2486
+ /**
2487
+ * The ID of the sheet that the has visual that you want to embed. The SheetId can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.
2488
+ */
2489
+ SheetId: RestrictiveResourceId;
2490
+ /**
2491
+ * The ID of the visual that you want to embed. The VisualID can be found in the IDs for developers section of the Embed visual pane of the visual's on-visual menu of the Amazon QuickSight console.
2492
+ */
2493
+ VisualId: RestrictiveResourceId;
2494
+ }
2471
2495
  export interface DataColorPalette {
2472
2496
  /**
2473
2497
  * The hexadecimal codes for the colors.
@@ -4290,7 +4314,7 @@ declare namespace QuickSight {
4290
4314
  */
4291
4315
  UserArn: Arn;
4292
4316
  /**
4293
- * The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards or the entire Amazon QuickSight console.
4317
+ * The experience you are embedding. For registered users, you can embed Amazon QuickSight dashboards, Amazon QuickSight visuals, the Amazon QuickSight Q search bar, or the entire Amazon QuickSight console.
4294
4318
  */
4295
4319
  ExperienceConfiguration: RegisteredUserEmbeddingExperienceConfiguration;
4296
4320
  /**
@@ -4300,7 +4324,7 @@ declare namespace QuickSight {
4300
4324
  }
4301
4325
  export interface GenerateEmbedUrlForRegisteredUserResponse {
4302
4326
  /**
4303
- * The embed URL for the Amazon QuickSight dashboard or console.
4327
+ * The embed URL for the Amazon QuickSight dashboard, visual, Q search bar, or console.
4304
4328
  */
4305
4329
  EmbedUrl: EmbeddingUrl;
4306
4330
  /**
@@ -5752,6 +5776,12 @@ declare namespace QuickSight {
5752
5776
  */
5753
5777
  InitialDashboardId: RestrictiveResourceId;
5754
5778
  }
5779
+ export interface RegisteredUserDashboardVisualEmbeddingConfiguration {
5780
+ /**
5781
+ * The visual ID for the visual that you want the user to embed. This ID is included in the output URL. When the URL in response is accessed, Amazon QuickSight renders this visual. The Amazon Resource Name (ARN) of the dashboard that the visual belongs to must be included in the AuthorizedResourceArns parameter. Otherwise, the request will fail with InvalidParameterValueException.
5782
+ */
5783
+ InitialDashboardVisualId: DashboardVisualId;
5784
+ }
5755
5785
  export interface RegisteredUserEmbeddingExperienceConfiguration {
5756
5786
  /**
5757
5787
  * The configuration details for providing a dashboard embedding experience.
@@ -5765,6 +5795,10 @@ declare namespace QuickSight {
5765
5795
  * The configuration details for embedding the Q search bar. For more information about embedding the Q search bar, see Embedding Overview in the Amazon QuickSight User Guide.
5766
5796
  */
5767
5797
  QSearchBar?: RegisteredUserQSearchBarEmbeddingConfiguration;
5798
+ /**
5799
+ * The type of embedding experience. In this case, Amazon QuickSight visuals.
5800
+ */
5801
+ DashboardVisual?: RegisteredUserDashboardVisualEmbeddingConfiguration;
5768
5802
  }
5769
5803
  export interface RegisteredUserQSearchBarEmbeddingConfiguration {
5770
5804
  /**
@@ -461,15 +461,15 @@ declare namespace Transfer {
461
461
  export type Arn = string;
462
462
  export interface As2ConnectorConfig {
463
463
  /**
464
- * A unique identifier for the AS2 process.
464
+ * A unique identifier for the AS2 local profile.
465
465
  */
466
466
  LocalProfileId?: ProfileId;
467
467
  /**
468
- * A unique identifier for the partner for the connector.
468
+ * A unique identifier for the partner profile for the connector.
469
469
  */
470
470
  PartnerProfileId?: ProfileId;
471
471
  /**
472
- * A short description to help identify the connector.
472
+ * Used as the Subject HTTP header attribute in AS2 messages that are being sent with the connector.
473
473
  */
474
474
  MessageSubject?: MessageSubject;
475
475
  /**
@@ -481,11 +481,11 @@ declare namespace Transfer {
481
481
  */
482
482
  EncryptionAlgorithm?: EncryptionAlg;
483
483
  /**
484
- * The algorithm that is used to sign the AS2 transfers for this partner profile.
484
+ * The algorithm that is used to sign the AS2 messages sent with the connector.
485
485
  */
486
486
  SigningAlgorithm?: SigningAlg;
487
487
  /**
488
- * The signing algorithm for the MDN response.
488
+ * The signing algorithm for the MDN response. If set to DEFAULT (or not set at all), the value for SigningAlogorithm is used.
489
489
  */
490
490
  MdnSigningAlgorithm?: MdnSigningAlg;
491
491
  /**
@@ -590,7 +590,7 @@ declare namespace Transfer {
590
590
  */
591
591
  BaseDirectory: HomeDirectory;
592
592
  /**
593
- * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that grants access to at least the HomeDirectory of your users' Amazon S3 buckets.
593
+ * With AS2, you can send files by calling StartFileTransfer and specifying the file paths in the request parameter, SendFilePaths. We use the file’s parent directory (for example, for --send-file-paths /bucket/dir/file.txt, parent directory is /bucket/dir/) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, the AccessRole needs to provide read and write access to the parent directory of the file location used in the StartFileTransfer request. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send with StartFileTransfer.
594
594
  */
595
595
  AccessRole: Role;
596
596
  /**
@@ -638,7 +638,7 @@ declare namespace Transfer {
638
638
  }
639
639
  export interface CreateProfileRequest {
640
640
  /**
641
- * The As2Id is the AS2-name, as defined in the defined in the RFC 4130. For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.
641
+ * The As2Id is the AS2-name, as defined in the RFC 4130. For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.
642
642
  */
643
643
  As2Id: As2Id;
644
644
  /**
@@ -1107,11 +1107,11 @@ declare namespace Transfer {
1107
1107
  */
1108
1108
  ServerId?: ServerId;
1109
1109
  /**
1110
- * A unique identifier for the AS2 process.
1110
+ * A unique identifier for the AS2 local profile.
1111
1111
  */
1112
1112
  LocalProfileId?: ProfileId;
1113
1113
  /**
1114
- * A unique identifier for the partner in the agreement.
1114
+ * A unique identifier for the partner profile used in the agreement.
1115
1115
  */
1116
1116
  PartnerProfileId?: ProfileId;
1117
1117
  /**
@@ -1119,7 +1119,7 @@ declare namespace Transfer {
1119
1119
  */
1120
1120
  BaseDirectory?: HomeDirectory;
1121
1121
  /**
1122
- * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that grants access to at least the HomeDirectory of your users' Amazon S3 buckets.
1122
+ * With AS2, you can send files by calling StartFileTransfer and specifying the file paths in the request parameter, SendFilePaths. We use the file’s parent directory (for example, for --send-file-paths /bucket/dir/file.txt, parent directory is /bucket/dir/) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, the AccessRole needs to provide read and write access to the parent directory of the file location used in the StartFileTransfer request. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send with StartFileTransfer.
1123
1123
  */
1124
1124
  AccessRole?: Role;
1125
1125
  /**
@@ -1260,7 +1260,7 @@ declare namespace Transfer {
1260
1260
  */
1261
1261
  ProfileType?: ProfileType;
1262
1262
  /**
1263
- * The unique identifier for the AS2 process.
1263
+ * The As2Id is the AS2-name, as defined in the RFC 4130. For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.
1264
1264
  */
1265
1265
  As2Id?: As2Id;
1266
1266
  /**
@@ -1308,7 +1308,7 @@ declare namespace Transfer {
1308
1308
  */
1309
1309
  Certificate?: Certificate;
1310
1310
  /**
1311
- * The protocol settings that are configured for your server. Use the PassiveIp parameter to indicate passive mode. Enter a single IPv4 address, such as the public IP address of a firewall, router, or load balancer.
1311
+ * The protocol settings that are configured for your server. To indicate passive mode (for FTP and FTPS protocols), use the PassiveIp parameter. Enter a single dotted-quad IPv4 address, such as the external IP address of a firewall, router, or load balancer. To ignore the error that is generated when the client attempts to use the SETSTAT command on a file that you are uploading to an Amazon S3 bucket, use the SetStatOption parameter. To have the Transfer Family server ignore the SETSTAT command and upload files without needing to make any changes to your SFTP client, set the value to ENABLE_NO_OP. If you set the SetStatOption parameter to ENABLE_NO_OP, Transfer Family generates a log entry to Amazon CloudWatch Logs, so that you can determine when the client is making a SETSTAT call. To determine whether your Transfer Family server resumes recent, negotiated sessions through a unique session ID, use the TlsSessionResumptionMode parameter. As2Transports indicates the transport method for the AS2 messages. Currently, only HTTP is supported.
1312
1312
  */
1313
1313
  ProtocolDetails?: ProtocolDetails;
1314
1314
  /**
@@ -1348,7 +1348,7 @@ declare namespace Transfer {
1348
1348
  */
1349
1349
  PreAuthenticationLoginBanner?: PreAuthenticationLoginBanner;
1350
1350
  /**
1351
- * Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are: SFTP (Secure Shell (SSH) File Transfer Protocol): File transfer over SSH FTPS (File Transfer Protocol Secure): File transfer with TLS encryption FTP (File Transfer Protocol): Unencrypted file transfer
1351
+ * Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are: SFTP (Secure Shell (SSH) File Transfer Protocol): File transfer over SSH FTPS (File Transfer Protocol Secure): File transfer with TLS encryption FTP (File Transfer Protocol): Unencrypted file transfer AS2 (Applicability Statement 2): used for transporting structured business-to-business data If you select FTPS, you must choose a certificate stored in Certificate Manager (ACM) which is used to identify your server when clients connect to it over FTPS. If Protocol includes either FTP or FTPS, then the EndpointType must be VPC and the IdentityProviderType must be AWS_DIRECTORY_SERVICE or API_GATEWAY. If Protocol includes FTP, then AddressAllocationIds cannot be associated. If Protocol is set only to SFTP, the EndpointType can be set to PUBLIC and the IdentityProviderType can be set to SERVICE_MANAGED. If Protocol includes AS2, then the EndpointType must be VPC, and domain must be Amazon S3.
1352
1352
  */
1353
1353
  Protocols?: Protocols;
1354
1354
  /**
@@ -1950,11 +1950,11 @@ declare namespace Transfer {
1950
1950
  */
1951
1951
  ServerId?: ServerId;
1952
1952
  /**
1953
- * A unique identifier for the AS2 process.
1953
+ * A unique identifier for the AS2 local profile.
1954
1954
  */
1955
1955
  LocalProfileId?: ProfileId;
1956
1956
  /**
1957
- * A unique identifier for the partner process.
1957
+ * A unique identifier for the partner profile.
1958
1958
  */
1959
1959
  PartnerProfileId?: ProfileId;
1960
1960
  }
@@ -2038,7 +2038,7 @@ declare namespace Transfer {
2038
2038
  */
2039
2039
  ProfileId?: ProfileId;
2040
2040
  /**
2041
- * The unique identifier for the AS2 process.
2041
+ * The As2Id is the AS2-name, as defined in the RFC 4130. For inbound transfers, this is the AS2-From header for the AS2 messages sent from the partner. For outbound connectors, this is the AS2-To header for the AS2 messages sent to the partner using the StartFileTransfer API operation. This ID cannot include spaces.
2042
2042
  */
2043
2043
  As2Id?: As2Id;
2044
2044
  /**
@@ -2474,11 +2474,11 @@ declare namespace Transfer {
2474
2474
  */
2475
2475
  Status?: AgreementStatusType;
2476
2476
  /**
2477
- * To change the local profile identifier, provide a new value here.
2477
+ * A unique identifier for the AS2 local profile. To change the local profile identifier, provide a new value here.
2478
2478
  */
2479
2479
  LocalProfileId?: ProfileId;
2480
2480
  /**
2481
- * To change the partner profile identifier, provide a new value here.
2481
+ * A unique identifier for the partner profile. To change the partner profile identifier, provide a new value here.
2482
2482
  */
2483
2483
  PartnerProfileId?: ProfileId;
2484
2484
  /**
@@ -2486,7 +2486,7 @@ declare namespace Transfer {
2486
2486
  */
2487
2487
  BaseDirectory?: HomeDirectory;
2488
2488
  /**
2489
- * The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that grants access to at least the HomeDirectory of your users' Amazon S3 buckets.
2489
+ * With AS2, you can send files by calling StartFileTransfer and specifying the file paths in the request parameter, SendFilePaths. We use the file’s parent directory (for example, for --send-file-paths /bucket/dir/file.txt, parent directory is /bucket/dir/) to temporarily store a processed AS2 message file, store the MDN when we receive them from the partner, and write a final JSON file containing relevant metadata of the transmission. So, the AccessRole needs to provide read and write access to the parent directory of the file location used in the StartFileTransfer request. Additionally, you need to provide read and write access to the parent directory of the files that you intend to send with StartFileTransfer.
2490
2490
  */
2491
2491
  AccessRole?: Role;
2492
2492
  }
@@ -2602,7 +2602,7 @@ declare namespace Transfer {
2602
2602
  */
2603
2603
  PreAuthenticationLoginBanner?: PreAuthenticationLoginBanner;
2604
2604
  /**
2605
- * Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are: Secure Shell (SSH) File Transfer Protocol (SFTP): File transfer over SSH File Transfer Protocol Secure (FTPS): File transfer with TLS encryption File Transfer Protocol (FTP): Unencrypted file transfer If you select FTPS, you must choose a certificate stored in Amazon Web ServicesCertificate Manager (ACM) which will be used to identify your server when clients connect to it over FTPS. If Protocol includes either FTP or FTPS, then the EndpointType must be VPC and the IdentityProviderType must be AWS_DIRECTORY_SERVICE or API_GATEWAY. If Protocol includes FTP, then AddressAllocationIds cannot be associated. If Protocol is set only to SFTP, the EndpointType can be set to PUBLIC and the IdentityProviderType can be set to SERVICE_MANAGED.
2605
+ * Specifies the file transfer protocol or protocols over which your file transfer protocol client can connect to your server's endpoint. The available protocols are: SFTP (Secure Shell (SSH) File Transfer Protocol): File transfer over SSH FTPS (File Transfer Protocol Secure): File transfer with TLS encryption FTP (File Transfer Protocol): Unencrypted file transfer AS2 (Applicability Statement 2): used for transporting structured business-to-business data If you select FTPS, you must choose a certificate stored in Certificate Manager (ACM) which is used to identify your server when clients connect to it over FTPS. If Protocol includes either FTP or FTPS, then the EndpointType must be VPC and the IdentityProviderType must be AWS_DIRECTORY_SERVICE or API_GATEWAY. If Protocol includes FTP, then AddressAllocationIds cannot be associated. If Protocol is set only to SFTP, the EndpointType can be set to PUBLIC and the IdentityProviderType can be set to SERVICE_MANAGED. If Protocol includes AS2, then the EndpointType must be VPC, and domain must be Amazon S3.
2606
2606
  */
2607
2607
  Protocols?: Protocols;
2608
2608
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1201.0',
86
+ VERSION: '2.1202.0',
87
87
 
88
88
  /**
89
89
  * @api private