aws-sdk 2.767.0 → 2.771.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/CHANGELOG.md +31 -1
- package/README.md +1 -1
- package/apis/amplify-2017-07-25.min.json +58 -46
- package/apis/ce-2017-10-25.min.json +119 -87
- package/apis/dms-2016-01-01.min.json +230 -126
- package/apis/ec2-2016-11-15.min.json +39 -7
- package/apis/elasticache-2015-02-02.min.json +425 -106
- package/apis/elasticache-2015-02-02.paginators.json +12 -0
- package/apis/eventbridge-2015-10-07.min.json +20 -3
- package/apis/events-2015-10-07.min.json +20 -3
- package/apis/kinesisanalyticsv2-2018-05-23.min.json +4 -1
- package/apis/marketplace-catalog-2018-09-17.min.json +12 -10
- package/apis/medialive-2017-10-14.min.json +366 -194
- package/apis/mediapackage-2017-10-12.min.json +214 -93
- package/apis/rds-2014-10-31.min.json +7 -1
- package/apis/rekognition-2016-06-27.min.json +96 -76
- package/apis/servicecatalog-2015-12-10.min.json +60 -30
- package/apis/servicecatalog-2015-12-10.paginators.json +5 -0
- package/apis/snowball-2016-06-30.min.json +61 -9
- package/clients/amplify.d.ts +17 -0
- package/clients/cloudwatchevents.d.ts +27 -0
- package/clients/computeoptimizer.d.ts +15 -15
- package/clients/costexplorer.d.ts +63 -11
- package/clients/dms.d.ts +189 -8
- package/clients/ec2.d.ts +36 -8
- package/clients/eks.d.ts +2 -2
- package/clients/elasticache.d.ts +416 -4
- package/clients/eventbridge.d.ts +27 -0
- package/clients/kinesisanalyticsv2.d.ts +79 -75
- package/clients/marketplacecatalog.d.ts +9 -0
- package/clients/medialive.d.ts +206 -4
- package/clients/mediapackage.d.ts +58 -0
- package/clients/rds.d.ts +13 -5
- package/clients/rekognition.d.ts +32 -14
- package/clients/sagemaker.d.ts +5 -5
- package/clients/servicecatalog.d.ts +66 -21
- package/clients/snowball.d.ts +122 -52
- package/clients/sns.d.ts +1 -1
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +18 -18
- package/dist/aws-sdk.js +808 -335
- package/dist/aws-sdk.min.js +78 -78
- package/lib/config-base.d.ts +3 -0
- package/lib/core.d.ts +1 -1
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/rekognition.d.ts
CHANGED
|
@@ -13,11 +13,11 @@ declare class Rekognition extends Service {
|
|
|
13
13
|
constructor(options?: Rekognition.Types.ClientConfiguration)
|
|
14
14
|
config: Config & Rekognition.Types.ClientConfiguration;
|
|
15
15
|
/**
|
|
16
|
-
* Compares a face in the source input image with each of the 100 largest faces detected in the target input image. If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image. You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file. In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, role, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match. By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the SimilarityThreshold parameter. CompareFaces also returns an array of faces that don't match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value. The QualityFilter input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. Use QualityFilter to set the quality bar by specifying LOW, MEDIUM, or HIGH. If you do not want to filter detected faces, specify NONE. The default value is NONE.
|
|
16
|
+
* Compares a face in the source input image with each of the 100 largest faces detected in the target input image. If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image. You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file. In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, role, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match. By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the SimilarityThreshold parameter. CompareFaces also returns an array of faces that don't match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value. The QualityFilter input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. Use QualityFilter to set the quality bar by specifying LOW, MEDIUM, or HIGH. If you do not want to filter detected faces, specify NONE. The default value is NONE. If the image doesn't contain Exif metadata, CompareFaces returns orientation information for the source and target images. Use these values to display the images with the correct image orientation. If no faces are detected in the source or target images, CompareFaces returns an InvalidParameterException error. This is a stateless API operation. That is, data returned by this operation doesn't persist. For an example, see Comparing Faces in Images in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:CompareFaces action.
|
|
17
17
|
*/
|
|
18
18
|
compareFaces(params: Rekognition.Types.CompareFacesRequest, callback?: (err: AWSError, data: Rekognition.Types.CompareFacesResponse) => void): Request<Rekognition.Types.CompareFacesResponse, AWSError>;
|
|
19
19
|
/**
|
|
20
|
-
* Compares a face in the source input image with each of the 100 largest faces detected in the target input image. If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image. You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file. In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, role, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match. By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the SimilarityThreshold parameter. CompareFaces also returns an array of faces that don't match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value. The QualityFilter input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. Use QualityFilter to set the quality bar by specifying LOW, MEDIUM, or HIGH. If you do not want to filter detected faces, specify NONE. The default value is NONE.
|
|
20
|
+
* Compares a face in the source input image with each of the 100 largest faces detected in the target input image. If the source image contains multiple faces, the service detects the largest face and compares it with each face detected in the target image. You pass the input and target images either as base64-encoded image bytes or as references to images in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes isn't supported. The image must be formatted as a PNG or JPEG file. In response, the operation returns an array of face matches ordered by similarity score in descending order. For each face match, the response provides a bounding box of the face, facial landmarks, pose details (pitch, role, and yaw), quality (brightness and sharpness), and confidence value (indicating the level of confidence that the bounding box contains a face). The response also provides a similarity score, which indicates how closely the faces match. By default, only faces with a similarity score of greater than or equal to 80% are returned in the response. You can change this value by specifying the SimilarityThreshold parameter. CompareFaces also returns an array of faces that don't match the source image. For each face, it returns a bounding box, confidence value, landmarks, pose details, and quality. The response also returns information about the face in the source image, including the bounding box of the face and confidence value. The QualityFilter input parameter allows you to filter out detected faces that don’t meet a required quality bar. The quality bar is based on a variety of common use cases. Use QualityFilter to set the quality bar by specifying LOW, MEDIUM, or HIGH. If you do not want to filter detected faces, specify NONE. The default value is NONE. If the image doesn't contain Exif metadata, CompareFaces returns orientation information for the source and target images. Use these values to display the images with the correct image orientation. If no faces are detected in the source or target images, CompareFaces returns an InvalidParameterException error. This is a stateless API operation. That is, data returned by this operation doesn't persist. For an example, see Comparing Faces in Images in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:CompareFaces action.
|
|
21
21
|
*/
|
|
22
22
|
compareFaces(callback?: (err: AWSError, data: Rekognition.Types.CompareFacesResponse) => void): Request<Rekognition.Types.CompareFacesResponse, AWSError>;
|
|
23
23
|
/**
|
|
@@ -269,11 +269,11 @@ declare class Rekognition extends Service {
|
|
|
269
269
|
*/
|
|
270
270
|
listStreamProcessors(callback?: (err: AWSError, data: Rekognition.Types.ListStreamProcessorsResponse) => void): Request<Rekognition.Types.ListStreamProcessorsResponse, AWSError>;
|
|
271
271
|
/**
|
|
272
|
-
* Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide. RecognizeCelebrities returns the
|
|
272
|
+
* Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide. RecognizeCelebrities returns the 64 largest faces in the image. It lists recognized celebrities in the CelebrityFaces array and unrecognized faces in the UnrecognizedFaces array. RecognizeCelebrities doesn't return celebrities whose faces aren't among the largest 64 faces in the image. For each celebrity recognized, RecognizeCelebrities returns a Celebrity object. The Celebrity object contains the celebrity name, ID, URL links to additional information, match confidence, and a ComparedFace object that you can use to locate the celebrity's face on the image. Amazon Rekognition doesn't retain information about which images a celebrity has been recognized in. Your application must store this information and use the Celebrity ID property as a unique identifier for the celebrity. If you don't store the celebrity name or additional information URLs returned by RecognizeCelebrities, you will need the ID to identify the celebrity in a call to the GetCelebrityInfo operation. You pass the input image either as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes is not supported. The image must be either a PNG or JPEG formatted file. For an example, see Recognizing Celebrities in an Image in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:RecognizeCelebrities operation.
|
|
273
273
|
*/
|
|
274
274
|
recognizeCelebrities(params: Rekognition.Types.RecognizeCelebritiesRequest, callback?: (err: AWSError, data: Rekognition.Types.RecognizeCelebritiesResponse) => void): Request<Rekognition.Types.RecognizeCelebritiesResponse, AWSError>;
|
|
275
275
|
/**
|
|
276
|
-
* Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide. RecognizeCelebrities returns the
|
|
276
|
+
* Returns an array of celebrities recognized in the input image. For more information, see Recognizing Celebrities in the Amazon Rekognition Developer Guide. RecognizeCelebrities returns the 64 largest faces in the image. It lists recognized celebrities in the CelebrityFaces array and unrecognized faces in the UnrecognizedFaces array. RecognizeCelebrities doesn't return celebrities whose faces aren't among the largest 64 faces in the image. For each celebrity recognized, RecognizeCelebrities returns a Celebrity object. The Celebrity object contains the celebrity name, ID, URL links to additional information, match confidence, and a ComparedFace object that you can use to locate the celebrity's face on the image. Amazon Rekognition doesn't retain information about which images a celebrity has been recognized in. Your application must store this information and use the Celebrity ID property as a unique identifier for the celebrity. If you don't store the celebrity name or additional information URLs returned by RecognizeCelebrities, you will need the ID to identify the celebrity in a call to the GetCelebrityInfo operation. You pass the input image either as base64-encoded image bytes or as a reference to an image in an Amazon S3 bucket. If you use the AWS CLI to call Amazon Rekognition operations, passing image bytes is not supported. The image must be either a PNG or JPEG formatted file. For an example, see Recognizing Celebrities in an Image in the Amazon Rekognition Developer Guide. This operation requires permissions to perform the rekognition:RecognizeCelebrities operation.
|
|
277
277
|
*/
|
|
278
278
|
recognizeCelebrities(callback?: (err: AWSError, data: Rekognition.Types.RecognizeCelebritiesResponse) => void): Request<Rekognition.Types.RecognizeCelebritiesResponse, AWSError>;
|
|
279
279
|
/**
|
|
@@ -436,7 +436,7 @@ declare namespace Rekognition {
|
|
|
436
436
|
*/
|
|
437
437
|
SampleRate?: ULong;
|
|
438
438
|
/**
|
|
439
|
-
* The number of audio channels in the
|
|
439
|
+
* The number of audio channels in the segment.
|
|
440
440
|
*/
|
|
441
441
|
NumberOfChannels?: ULong;
|
|
442
442
|
}
|
|
@@ -1555,7 +1555,7 @@ declare namespace Rekognition {
|
|
|
1555
1555
|
*/
|
|
1556
1556
|
NextToken?: PaginationToken;
|
|
1557
1557
|
/**
|
|
1558
|
-
* An array of segments detected in a video.
|
|
1558
|
+
* An array of segments detected in a video. The array is sorted by the segment types (TECHNICAL_CUE or SHOT) specified in the SegmentTypes input parameter of StartSegmentDetection. Within each segment type the array is sorted by timestamp values.
|
|
1559
1559
|
*/
|
|
1560
1560
|
Segments?: SegmentDetections;
|
|
1561
1561
|
/**
|
|
@@ -1773,11 +1773,11 @@ declare namespace Rekognition {
|
|
|
1773
1773
|
*/
|
|
1774
1774
|
Type?: LandmarkType;
|
|
1775
1775
|
/**
|
|
1776
|
-
* The x-coordinate
|
|
1776
|
+
* The x-coordinate of the landmark expressed as a ratio of the width of the image. The x-coordinate is measured from the left-side of the image. For example, if the image is 700 pixels wide and the x-coordinate of the landmark is at 350 pixels, this value is 0.5.
|
|
1777
1777
|
*/
|
|
1778
1778
|
X?: Float;
|
|
1779
1779
|
/**
|
|
1780
|
-
* The y-coordinate
|
|
1780
|
+
* The y-coordinate of the landmark expressed as a ratio of the height of the image. The y-coordinate is measured from the top of the image. For example, if the image height is 200 pixels and the y-coordinate of the landmark is at 50 pixels, this value is 0.25.
|
|
1781
1781
|
*/
|
|
1782
1782
|
Y?: Float;
|
|
1783
1783
|
}
|
|
@@ -2044,17 +2044,21 @@ declare namespace Rekognition {
|
|
|
2044
2044
|
*/
|
|
2045
2045
|
OutputConfig?: OutputConfig;
|
|
2046
2046
|
/**
|
|
2047
|
-
*
|
|
2047
|
+
* Contains information about the training results.
|
|
2048
2048
|
*/
|
|
2049
2049
|
TrainingDataResult?: TrainingDataResult;
|
|
2050
2050
|
/**
|
|
2051
|
-
*
|
|
2051
|
+
* Contains information about the testing results.
|
|
2052
2052
|
*/
|
|
2053
2053
|
TestingDataResult?: TestingDataResult;
|
|
2054
2054
|
/**
|
|
2055
2055
|
* The training results. EvaluationResult is only returned if training is successful.
|
|
2056
2056
|
*/
|
|
2057
2057
|
EvaluationResult?: EvaluationResult;
|
|
2058
|
+
/**
|
|
2059
|
+
* The location of the summary manifest. The summary manifest provides aggregate data validation results for the training and test datasets.
|
|
2060
|
+
*/
|
|
2061
|
+
ManifestSummary?: GroundTruthManifest;
|
|
2058
2062
|
}
|
|
2059
2063
|
export type ProjectVersionDescriptions = ProjectVersionDescription[];
|
|
2060
2064
|
export type ProjectVersionStatus = "TRAINING_IN_PROGRESS"|"TRAINING_COMPLETED"|"TRAINING_FAILED"|"STARTING"|"RUNNING"|"FAILED"|"STOPPING"|"STOPPED"|"DELETING"|string;
|
|
@@ -2071,7 +2075,7 @@ declare namespace Rekognition {
|
|
|
2071
2075
|
}
|
|
2072
2076
|
export interface RecognizeCelebritiesResponse {
|
|
2073
2077
|
/**
|
|
2074
|
-
* Details about each celebrity found in the image. Amazon Rekognition can detect a maximum of
|
|
2078
|
+
* Details about each celebrity found in the image. Amazon Rekognition can detect a maximum of 64 celebrities in an image.
|
|
2075
2079
|
*/
|
|
2076
2080
|
CelebrityFaces?: CelebrityList;
|
|
2077
2081
|
/**
|
|
@@ -2190,11 +2194,11 @@ declare namespace Rekognition {
|
|
|
2190
2194
|
*/
|
|
2191
2195
|
Type?: SegmentType;
|
|
2192
2196
|
/**
|
|
2193
|
-
* The start time of the detected segment in milliseconds from the start of the video.
|
|
2197
|
+
* The start time of the detected segment in milliseconds from the start of the video. This value is rounded down. For example, if the actual timestamp is 100.6667 milliseconds, Amazon Rekognition Video returns a value of 100 millis.
|
|
2194
2198
|
*/
|
|
2195
2199
|
StartTimestampMillis?: Timestamp;
|
|
2196
2200
|
/**
|
|
2197
|
-
* The end time of the detected segment, in milliseconds, from the start of the video.
|
|
2201
|
+
* The end time of the detected segment, in milliseconds, from the start of the video. This value is rounded down.
|
|
2198
2202
|
*/
|
|
2199
2203
|
EndTimestampMillis?: Timestamp;
|
|
2200
2204
|
/**
|
|
@@ -2238,7 +2242,7 @@ declare namespace Rekognition {
|
|
|
2238
2242
|
export type SegmentTypesInfo = SegmentTypeInfo[];
|
|
2239
2243
|
export interface ShotSegment {
|
|
2240
2244
|
/**
|
|
2241
|
-
* An Identifier for a shot detection segment detected in a video
|
|
2245
|
+
* An Identifier for a shot detection segment detected in a video.
|
|
2242
2246
|
*/
|
|
2243
2247
|
Index?: ULong;
|
|
2244
2248
|
/**
|
|
@@ -2624,6 +2628,10 @@ declare namespace Rekognition {
|
|
|
2624
2628
|
* The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
|
|
2625
2629
|
*/
|
|
2626
2630
|
Output?: TestingData;
|
|
2631
|
+
/**
|
|
2632
|
+
* The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
|
|
2633
|
+
*/
|
|
2634
|
+
Validation?: ValidationData;
|
|
2627
2635
|
}
|
|
2628
2636
|
export interface TextDetection {
|
|
2629
2637
|
/**
|
|
@@ -2681,6 +2689,10 @@ declare namespace Rekognition {
|
|
|
2681
2689
|
* The images (assets) that were actually trained by Amazon Rekognition Custom Labels.
|
|
2682
2690
|
*/
|
|
2683
2691
|
Output?: TrainingData;
|
|
2692
|
+
/**
|
|
2693
|
+
* The location of the data validation manifest. The data validation manifest is created for the training dataset during model training.
|
|
2694
|
+
*/
|
|
2695
|
+
Validation?: ValidationData;
|
|
2684
2696
|
}
|
|
2685
2697
|
export type UInteger = number;
|
|
2686
2698
|
export type ULong = number;
|
|
@@ -2697,6 +2709,12 @@ declare namespace Rekognition {
|
|
|
2697
2709
|
export type UnindexedFaces = UnindexedFace[];
|
|
2698
2710
|
export type Url = string;
|
|
2699
2711
|
export type Urls = Url[];
|
|
2712
|
+
export interface ValidationData {
|
|
2713
|
+
/**
|
|
2714
|
+
* The assets that comprise the validation data.
|
|
2715
|
+
*/
|
|
2716
|
+
Assets?: Assets;
|
|
2717
|
+
}
|
|
2700
2718
|
export type VersionName = string;
|
|
2701
2719
|
export type VersionNames = VersionName[];
|
|
2702
2720
|
export interface Video {
|
package/clients/sagemaker.d.ts
CHANGED
|
@@ -69,11 +69,11 @@ declare class SageMaker extends Service {
|
|
|
69
69
|
*/
|
|
70
70
|
createCompilationJob(callback?: (err: AWSError, data: SageMaker.Types.CreateCompilationJobResponse) => void): Request<SageMaker.Types.CreateCompilationJobResponse, AWSError>;
|
|
71
71
|
/**
|
|
72
|
-
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the
|
|
72
|
+
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to train or host models unless your VPC has an interface endpoint (PrivateLink) or a NAT gateway and your security groups allow outbound connections. VpcOnly network access type When you choose VpcOnly, you must specify the following: Security group inbound and outbound rules to allow NFS traffic over TCP on port 2049 between the domain and the EFS volume Security group inbound and outbound rules to allow traffic between the JupyterServer app and the KernelGateway apps Interface endpoints to access the SageMaker API and SageMaker runtime For more information, see: Security groups for your VPC VPC with public and private subnets (NAT) Connect to SageMaker through a VPC interface endpoint
|
|
73
73
|
*/
|
|
74
74
|
createDomain(params: SageMaker.Types.CreateDomainRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateDomainResponse) => void): Request<SageMaker.Types.CreateDomainResponse, AWSError>;
|
|
75
75
|
/**
|
|
76
|
-
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the
|
|
76
|
+
* Creates a Domain used by Amazon SageMaker Studio. A domain consists of an associated Amazon Elastic File System (EFS) volume, a list of authorized users, and a variety of security, application, policy, and Amazon Virtual Private Cloud (VPC) configurations. An AWS account is limited to one domain per region. Users within a domain can share notebook files and other artifacts with each other. When a domain is created, an EFS volume is created for use by all of the users within the domain. Each user receives a private home directory within the EFS volume for notebooks, Git repositories, and data files. VPC configuration All SageMaker Studio traffic between the domain and the EFS volume is through the specified VPC and subnets. For other Studio traffic, you can specify the AppNetworkAccessType parameter. AppNetworkAccessType corresponds to the network access type that you choose when you onboard to Studio. The following options are available: PublicInternetOnly - Non-EFS traffic goes through a VPC managed by Amazon SageMaker, which allows internet access. This is the default value. VpcOnly - All Studio traffic is through the specified VPC and subnets. Internet access is disabled by default. To allow internet access, you must specify a NAT gateway. When internet access is disabled, you won't be able to train or host models unless your VPC has an interface endpoint (PrivateLink) or a NAT gateway and your security groups allow outbound connections. VpcOnly network access type When you choose VpcOnly, you must specify the following: Security group inbound and outbound rules to allow NFS traffic over TCP on port 2049 between the domain and the EFS volume Security group inbound and outbound rules to allow traffic between the JupyterServer app and the KernelGateway apps Interface endpoints to access the SageMaker API and SageMaker runtime For more information, see: Security groups for your VPC VPC with public and private subnets (NAT) Connect to SageMaker through a VPC interface endpoint
|
|
77
77
|
*/
|
|
78
78
|
createDomain(callback?: (err: AWSError, data: SageMaker.Types.CreateDomainResponse) => void): Request<SageMaker.Types.CreateDomainResponse, AWSError>;
|
|
79
79
|
/**
|
|
@@ -5438,7 +5438,7 @@ declare namespace SageMaker {
|
|
|
5438
5438
|
*/
|
|
5439
5439
|
S3Uri: S3Uri;
|
|
5440
5440
|
/**
|
|
5441
|
-
* Specifies the name and shape of the expected data inputs for your trained model with a JSON dictionary form. The data inputs are InputConfig$Framework specific. TensorFlow: You must specify the name and shape (NHWC format) of the expected data inputs using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"input":[1,1024,1024,3]} If using the CLI, {\"input\":[1,1024,1024,3]} Examples for two inputs: If using the console, {"data1": [1,28,28,1], "data2":[1,28,28,1]} If using the CLI, {\"data1\": [1,28,28,1], \"data2\":[1,28,28,1]} KERAS: You must specify the name and shape (NCHW format) of expected data inputs using a dictionary format for your trained model. Note that while Keras model artifacts should be uploaded in NHWC (channel-last) format, DataInputConfig should be specified in NCHW (channel-first) format. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"input_1":[1,3,224,224]} If using the CLI, {\"input_1\":[1,3,224,224]} Examples for two inputs: If using the console, {"input_1": [1,3,224,224], "input_2":[1,3,224,224]} If using the CLI, {\"input_1\": [1,3,224,224], \"input_2\":[1,3,224,224]} MXNET/ONNX: You must specify the name and shape (NCHW format) of the expected data inputs in order using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"data":[1,3,1024,1024]} If using the CLI, {\"data\":[1,3,1024,1024]} Examples for two inputs: If using the console, {"var1": [1,1,28,28], "var2":[1,1,28,28]} If using the CLI, {\"var1\": [1,1,28,28], \"var2\":[1,1,28,28]} PyTorch: You can either specify the name and shape (NCHW format) of expected data inputs in order using a dictionary format for your trained model or you can specify the shape only using a list format. The dictionary formats required for the console and CLI are different. The list formats for the console and CLI are the same. Examples for one input in dictionary format: If using the console, {"input0":[1,3,224,224]} If using the CLI, {\"input0\":[1,3,224,224]} Example for one input in list format: [[1,3,224,224]] Examples for two inputs in dictionary format: If using the console, {"input0":[1,3,224,224], "input1":[1,3,224,224]} If using the CLI, {\"input0\":[1,3,224,224], \"input1\":[1,3,224,224]} Example for two inputs in list format: [[1,3,224,224], [1,3,224,224]] XGBOOST: input data name and shape are not needed.
|
|
5441
|
+
* Specifies the name and shape of the expected data inputs for your trained model with a JSON dictionary form. The data inputs are InputConfig$Framework specific. TensorFlow: You must specify the name and shape (NHWC format) of the expected data inputs using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"input":[1,1024,1024,3]} If using the CLI, {\"input\":[1,1024,1024,3]} Examples for two inputs: If using the console, {"data1": [1,28,28,1], "data2":[1,28,28,1]} If using the CLI, {\"data1\": [1,28,28,1], \"data2\":[1,28,28,1]} KERAS: You must specify the name and shape (NCHW format) of expected data inputs using a dictionary format for your trained model. Note that while Keras model artifacts should be uploaded in NHWC (channel-last) format, DataInputConfig should be specified in NCHW (channel-first) format. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"input_1":[1,3,224,224]} If using the CLI, {\"input_1\":[1,3,224,224]} Examples for two inputs: If using the console, {"input_1": [1,3,224,224], "input_2":[1,3,224,224]} If using the CLI, {\"input_1\": [1,3,224,224], \"input_2\":[1,3,224,224]} MXNET/ONNX: You must specify the name and shape (NCHW format) of the expected data inputs in order using a dictionary format for your trained model. The dictionary formats required for the console and CLI are different. Examples for one input: If using the console, {"data":[1,3,1024,1024]} If using the CLI, {\"data\":[1,3,1024,1024]} Examples for two inputs: If using the console, {"var1": [1,1,28,28], "var2":[1,1,28,28]} If using the CLI, {\"var1\": [1,1,28,28], \"var2\":[1,1,28,28]} PyTorch: You can either specify the name and shape (NCHW format) of expected data inputs in order using a dictionary format for your trained model or you can specify the shape only using a list format. The dictionary formats required for the console and CLI are different. The list formats for the console and CLI are the same. Examples for one input in dictionary format: If using the console, {"input0":[1,3,224,224]} If using the CLI, {\"input0\":[1,3,224,224]} Example for one input in list format: [[1,3,224,224]] Examples for two inputs in dictionary format: If using the console, {"input0":[1,3,224,224], "input1":[1,3,224,224]} If using the CLI, {\"input0\":[1,3,224,224], \"input1\":[1,3,224,224]} Example for two inputs in list format: [[1,3,224,224], [1,3,224,224]] XGBOOST: input data name and shape are not needed. DataInputConfig supports the following parameters for CoreML OutputConfig$TargetDevice (ML Model format): shape: Input shape, for example {"input_1": {"shape": [1,224,224,3]}}. In addition to static input shapes, CoreML converter supports Flexible input shapes: Range Dimension. You can use the Range Dimension feature if you know the input shape will be within some specific interval in that dimension, for example: {"input_1": {"shape": ["1..10", 224, 224, 3]}} Enumerated shapes. Sometimes, the models are trained to work only on a select set of inputs. You can enumerate all supported input shapes, for example: {"input_1": {"shape": [[1, 224, 224, 3], [1, 160, 160, 3]]}} default_shape: Default input shape. You can set a default shape during conversion for both Range Dimension and Enumerated Shapes. For example {"input_1": {"shape": ["1..10", 224, 224, 3], "default_shape": [1, 224, 224, 3]}} type: Input type. Allowed values: Image and Tensor. By default, the converter generates an ML Model with inputs of type Tensor (MultiArray). User can set input type to be Image. Image input type requires additional input parameters such as bias and scale. bias: If the input type is an Image, you need to provide the bias vector. scale: If the input type is an Image, you need to provide a scale factor. CoreML ClassifierConfig parameters can be specified using OutputConfig$CompilerOptions. CoreML converter supports Tensorflow and PyTorch models. CoreML conversion examples: Tensor type input: "DataInputConfig": {"input_1": {"shape": [[1,224,224,3], [1,160,160,3]], "default_shape": [1,224,224,3]}} Tensor type input without input name (PyTorch): "DataInputConfig": [{"shape": [[1,3,224,224], [1,3,160,160]], "default_shape": [1,3,224,224]}] Image type input: "DataInputConfig": {"input_1": {"shape": [[1,224,224,3], [1,160,160,3]], "default_shape": [1,224,224,3], "type": "Image", "bias": [-1,-1,-1], "scale": 0.007843137255}} "CompilerOptions": {"class_labels": "imagenet_labels_1000.txt"} Image type input without input name (PyTorch): "DataInputConfig": [{"shape": [[1,3,224,224], [1,3,160,160]], "default_shape": [1,3,224,224], "type": "Image", "bias": [-1,-1,-1], "scale": 0.007843137255}] "CompilerOptions": {"class_labels": "imagenet_labels_1000.txt"}
|
|
5442
5442
|
*/
|
|
5443
5443
|
DataInputConfig: DataInputConfig;
|
|
5444
5444
|
/**
|
|
@@ -7729,7 +7729,7 @@ declare namespace SageMaker {
|
|
|
7729
7729
|
*/
|
|
7730
7730
|
TargetPlatform?: TargetPlatform;
|
|
7731
7731
|
/**
|
|
7732
|
-
* Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU
|
|
7732
|
+
* Specifies additional parameters for compiler options in JSON format. The compiler options are TargetPlatform specific. It is required for NVIDIA accelerators and highly recommended for CPU compilations. For any other cases, it is optional to specify CompilerOptions. CPU: Compilation for CPU supports the following compiler options. mcpu: CPU micro-architecture. For example, {'mcpu': 'skylake-avx512'} mattr: CPU flags. For example, {'mattr': ['+neon', '+vfpv4']} ARM: Details of ARM CPU compilations. NEON: NEON is an implementation of the Advanced SIMD extension used in ARMv7 processors. For example, add {'mattr': ['+neon']} to the compiler options if compiling for ARM 32-bit platform with the NEON support. NVIDIA: Compilation for NVIDIA GPU supports the following compiler options. gpu_code: Specifies the targeted architecture. trt-ver: Specifies the TensorRT versions in x.y.z. format. cuda-ver: Specifies the CUDA version in x.y format. For example, {'gpu-code': 'sm_72', 'trt-ver': '6.0.1', 'cuda-ver': '10.1'} ANDROID: Compilation for the Android OS supports the following compiler options: ANDROID_PLATFORM: Specifies the Android API levels. Available levels range from 21 to 29. For example, {'ANDROID_PLATFORM': 28}. mattr: Add {'mattr': ['+neon']} to compiler options if compiling for ARM 32-bit platform with NEON support. CoreML: Compilation for the CoreML OutputConfig$TargetDevice supports the following compiler options: class_labels: Specifies the classification labels file name inside input tar.gz file. For example, {"class_labels": "imagenet_labels_1000.txt"}. Labels inside the txt file should be separated by newlines.
|
|
7733
7733
|
*/
|
|
7734
7734
|
CompilerOptions?: CompilerOptions;
|
|
7735
7735
|
}
|
|
@@ -8524,7 +8524,7 @@ declare namespace SageMaker {
|
|
|
8524
8524
|
export type TagList = Tag[];
|
|
8525
8525
|
export type TagValue = string;
|
|
8526
8526
|
export type TargetAttributeName = string;
|
|
8527
|
-
export type TargetDevice = "lambda"|"ml_m4"|"ml_m5"|"ml_c4"|"ml_c5"|"ml_p2"|"ml_p3"|"ml_g4dn"|"ml_inf1"|"jetson_tx1"|"jetson_tx2"|"jetson_nano"|"jetson_xavier"|"rasp3b"|"imx8qm"|"deeplens"|"rk3399"|"rk3288"|"aisage"|"sbe_c"|"qcs605"|"qcs603"|"sitara_am57x"|"amba_cv22"|"x86_win32"|"x86_win64"|string;
|
|
8527
|
+
export type TargetDevice = "lambda"|"ml_m4"|"ml_m5"|"ml_c4"|"ml_c5"|"ml_p2"|"ml_p3"|"ml_g4dn"|"ml_inf1"|"jetson_tx1"|"jetson_tx2"|"jetson_nano"|"jetson_xavier"|"rasp3b"|"imx8qm"|"deeplens"|"rk3399"|"rk3288"|"aisage"|"sbe_c"|"qcs605"|"qcs603"|"sitara_am57x"|"amba_cv22"|"x86_win32"|"x86_win64"|"coreml"|string;
|
|
8528
8528
|
export type TargetObjectiveMetricValue = number;
|
|
8529
8529
|
export interface TargetPlatform {
|
|
8530
8530
|
/**
|
|
@@ -100,11 +100,11 @@ declare class ServiceCatalog extends Service {
|
|
|
100
100
|
*/
|
|
101
101
|
createPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioOutput, AWSError>;
|
|
102
102
|
/**
|
|
103
|
-
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the
|
|
103
|
+
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the management account of an organization or by a delegated administrator. You can share portfolios to an organization, an organizational unit, or a specific account. Note that if a delegated admin is de-registered, they can no longer create portfolio shares. AWSOrganizationsAccess must be enabled in order to create a portfolio share to an organization node. You can't share a shared resource. This includes portfolios that contain a shared product.
|
|
104
104
|
*/
|
|
105
105
|
createPortfolioShare(params: ServiceCatalog.Types.CreatePortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioShareOutput, AWSError>;
|
|
106
106
|
/**
|
|
107
|
-
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the
|
|
107
|
+
* Shares the specified portfolio with the specified account or organization node. Shares to an organization node can only be created by the management account of an organization or by a delegated administrator. You can share portfolios to an organization, an organizational unit, or a specific account. Note that if a delegated admin is de-registered, they can no longer create portfolio shares. AWSOrganizationsAccess must be enabled in order to create a portfolio share to an organization node. You can't share a shared resource. This includes portfolios that contain a shared product.
|
|
108
108
|
*/
|
|
109
109
|
createPortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.CreatePortfolioShareOutput) => void): Request<ServiceCatalog.Types.CreatePortfolioShareOutput, AWSError>;
|
|
110
110
|
/**
|
|
@@ -164,11 +164,11 @@ declare class ServiceCatalog extends Service {
|
|
|
164
164
|
*/
|
|
165
165
|
deletePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioOutput, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the
|
|
167
|
+
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the management account of an organization or by a delegated administrator. Note that if a delegated admin is de-registered, portfolio shares created from that account are removed.
|
|
168
168
|
*/
|
|
169
169
|
deletePortfolioShare(params: ServiceCatalog.Types.DeletePortfolioShareInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioShareOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioShareOutput, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the
|
|
171
|
+
* Stops sharing the specified portfolio with the specified account or organization node. Shares to an organization node can only be deleted by the management account of an organization or by a delegated administrator. Note that if a delegated admin is de-registered, portfolio shares created from that account are removed.
|
|
172
172
|
*/
|
|
173
173
|
deletePortfolioShare(callback?: (err: AWSError, data: ServiceCatalog.Types.DeletePortfolioShareOutput) => void): Request<ServiceCatalog.Types.DeletePortfolioShareOutput, AWSError>;
|
|
174
174
|
/**
|
|
@@ -236,11 +236,11 @@ declare class ServiceCatalog extends Service {
|
|
|
236
236
|
*/
|
|
237
237
|
describePortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioOutput, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
* Gets the status of the specified portfolio share operation. This API can only be called by the
|
|
239
|
+
* Gets the status of the specified portfolio share operation. This API can only be called by the management account in the organization or by a delegated admin.
|
|
240
240
|
*/
|
|
241
241
|
describePortfolioShareStatus(params: ServiceCatalog.Types.DescribePortfolioShareStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioShareStatusOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioShareStatusOutput, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
* Gets the status of the specified portfolio share operation. This API can only be called by the
|
|
243
|
+
* Gets the status of the specified portfolio share operation. This API can only be called by the management account in the organization or by a delegated admin.
|
|
244
244
|
*/
|
|
245
245
|
describePortfolioShareStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioShareStatusOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioShareStatusOutput, AWSError>;
|
|
246
246
|
/**
|
|
@@ -332,11 +332,11 @@ declare class ServiceCatalog extends Service {
|
|
|
332
332
|
*/
|
|
333
333
|
describeTagOption(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeTagOptionOutput) => void): Request<ServiceCatalog.Types.DescribeTagOptionOutput, AWSError>;
|
|
334
334
|
/**
|
|
335
|
-
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the
|
|
335
|
+
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the management account in the organization. This API can't be invoked if there are active delegated administrators in the organization. Note that a delegated administrator is not authorized to invoke DisableAWSOrganizationsAccess.
|
|
336
336
|
*/
|
|
337
337
|
disableAWSOrganizationsAccess(params: ServiceCatalog.Types.DisableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
|
|
338
338
|
/**
|
|
339
|
-
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the
|
|
339
|
+
* Disable portfolio sharing through AWS Organizations feature. This feature will not delete your current shares but it will prevent you from creating new shares throughout your organization. Current shares will not be in sync with your organization structure if it changes after calling this API. This API can only be called by the management account in the organization. This API can't be invoked if there are active delegated administrators in the organization. Note that a delegated administrator is not authorized to invoke DisableAWSOrganizationsAccess.
|
|
340
340
|
*/
|
|
341
341
|
disableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.DisableAWSOrganizationsAccessOutput, AWSError>;
|
|
342
342
|
/**
|
|
@@ -380,11 +380,11 @@ declare class ServiceCatalog extends Service {
|
|
|
380
380
|
*/
|
|
381
381
|
disassociateTagOptionFromResource(callback?: (err: AWSError, data: ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput) => void): Request<ServiceCatalog.Types.DisassociateTagOptionFromResourceOutput, AWSError>;
|
|
382
382
|
/**
|
|
383
|
-
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the
|
|
383
|
+
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the management account in the organization. By calling this API Service Catalog will make a call to organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure. Note that a delegated administrator is not authorized to invoke EnableAWSOrganizationsAccess.
|
|
384
384
|
*/
|
|
385
385
|
enableAWSOrganizationsAccess(params: ServiceCatalog.Types.EnableAWSOrganizationsAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
|
|
386
386
|
/**
|
|
387
|
-
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the
|
|
387
|
+
* Enable portfolio sharing feature through AWS Organizations. This API will allow Service Catalog to receive updates on your organization in order to sync your shares with the current structure. This API can only be called by the management account in the organization. By calling this API Service Catalog will make a call to organizations:EnableAWSServiceAccess on your behalf so that your shares can be in sync with any changes in your AWS Organizations structure. Note that a delegated administrator is not authorized to invoke EnableAWSOrganizationsAccess.
|
|
388
388
|
*/
|
|
389
389
|
enableAWSOrganizationsAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput) => void): Request<ServiceCatalog.Types.EnableAWSOrganizationsAccessOutput, AWSError>;
|
|
390
390
|
/**
|
|
@@ -404,13 +404,21 @@ declare class ServiceCatalog extends Service {
|
|
|
404
404
|
*/
|
|
405
405
|
executeProvisionedProductServiceAction(callback?: (err: AWSError, data: ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput) => void): Request<ServiceCatalog.Types.ExecuteProvisionedProductServiceActionOutput, AWSError>;
|
|
406
406
|
/**
|
|
407
|
-
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the
|
|
407
|
+
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the management account in the organization or by a delegated admin.
|
|
408
408
|
*/
|
|
409
409
|
getAWSOrganizationsAccessStatus(params: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusInput, callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
|
|
410
410
|
/**
|
|
411
|
-
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the
|
|
411
|
+
* Get the Access Status for AWS Organization portfolio share feature. This API can only be called by the management account in the organization or by a delegated admin.
|
|
412
412
|
*/
|
|
413
413
|
getAWSOrganizationsAccessStatus(callback?: (err: AWSError, data: ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput) => void): Request<ServiceCatalog.Types.GetAWSOrganizationsAccessStatusOutput, AWSError>;
|
|
414
|
+
/**
|
|
415
|
+
* This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.
|
|
416
|
+
*/
|
|
417
|
+
getProvisionedProductOutputs(params: ServiceCatalog.Types.GetProvisionedProductOutputsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.GetProvisionedProductOutputsOutput) => void): Request<ServiceCatalog.Types.GetProvisionedProductOutputsOutput, AWSError>;
|
|
418
|
+
/**
|
|
419
|
+
* This API takes either a ProvisonedProductId or a ProvisionedProductName, along with a list of one or more output keys, and responds with the key/value pairs of those outputs.
|
|
420
|
+
*/
|
|
421
|
+
getProvisionedProductOutputs(callback?: (err: AWSError, data: ServiceCatalog.Types.GetProvisionedProductOutputsOutput) => void): Request<ServiceCatalog.Types.GetProvisionedProductOutputsOutput, AWSError>;
|
|
414
422
|
/**
|
|
415
423
|
* Lists all portfolios for which sharing was accepted by this account.
|
|
416
424
|
*/
|
|
@@ -444,11 +452,11 @@ declare class ServiceCatalog extends Service {
|
|
|
444
452
|
*/
|
|
445
453
|
listLaunchPaths(callback?: (err: AWSError, data: ServiceCatalog.Types.ListLaunchPathsOutput) => void): Request<ServiceCatalog.Types.ListLaunchPathsOutput, AWSError>;
|
|
446
454
|
/**
|
|
447
|
-
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the
|
|
455
|
+
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the management account in the organization or by a delegated admin. If a delegated admin is de-registered, they can no longer perform this operation.
|
|
448
456
|
*/
|
|
449
457
|
listOrganizationPortfolioAccess(params: ServiceCatalog.Types.ListOrganizationPortfolioAccessInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput, AWSError>;
|
|
450
458
|
/**
|
|
451
|
-
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the
|
|
459
|
+
* Lists the organization nodes that have access to the specified portfolio. This API can only be called by the management account in the organization or by a delegated admin. If a delegated admin is de-registered, they can no longer perform this operation.
|
|
452
460
|
*/
|
|
453
461
|
listOrganizationPortfolioAccess(callback?: (err: AWSError, data: ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput) => void): Request<ServiceCatalog.Types.ListOrganizationPortfolioAccessOutput, AWSError>;
|
|
454
462
|
/**
|
|
@@ -688,7 +696,7 @@ declare namespace ServiceCatalog {
|
|
|
688
696
|
*/
|
|
689
697
|
PortfolioId: Id;
|
|
690
698
|
/**
|
|
691
|
-
* The type of shared portfolios to accept. The default is to accept imported portfolios. AWS_ORGANIZATIONS - Accept portfolios shared by the
|
|
699
|
+
* The type of shared portfolios to accept. The default is to accept imported portfolios. AWS_ORGANIZATIONS - Accept portfolios shared by the management account of your organization. IMPORTED - Accept imported portfolios. AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.) For example, aws servicecatalog accept-portfolio-share --portfolio-id "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
|
|
692
700
|
*/
|
|
693
701
|
PortfolioShareType?: PortfolioShareType;
|
|
694
702
|
}
|
|
@@ -1022,13 +1030,13 @@ declare namespace ServiceCatalog {
|
|
|
1022
1030
|
*/
|
|
1023
1031
|
AccountId?: AccountId;
|
|
1024
1032
|
/**
|
|
1025
|
-
* The organization node to whom you are going to share. If OrganizationNode is passed in, PortfolioShare will be created for the node
|
|
1033
|
+
* The organization node to whom you are going to share. If OrganizationNode is passed in, PortfolioShare will be created for the node an ListOrganizationPortfolioAccessd its children (when applies), and a PortfolioShareToken will be returned in the output in order for the administrator to monitor the status of the PortfolioShare creation process.
|
|
1026
1034
|
*/
|
|
1027
1035
|
OrganizationNode?: OrganizationNode;
|
|
1028
1036
|
}
|
|
1029
1037
|
export interface CreatePortfolioShareOutput {
|
|
1030
1038
|
/**
|
|
1031
|
-
* The portfolio
|
|
1039
|
+
* The portfolio shares a unique identifier that only returns if the portfolio is shared to an organization node.
|
|
1032
1040
|
*/
|
|
1033
1041
|
PortfolioShareToken?: Id;
|
|
1034
1042
|
}
|
|
@@ -1557,11 +1565,11 @@ declare namespace ServiceCatalog {
|
|
|
1557
1565
|
*/
|
|
1558
1566
|
AcceptLanguage?: AcceptLanguage;
|
|
1559
1567
|
/**
|
|
1560
|
-
* The provisioned product identifier.
|
|
1568
|
+
* The provisioned product identifier.
|
|
1561
1569
|
*/
|
|
1562
1570
|
Id?: Id;
|
|
1563
1571
|
/**
|
|
1564
|
-
* The name of the provisioned product.
|
|
1572
|
+
* The name of the provisioned product.
|
|
1565
1573
|
*/
|
|
1566
1574
|
Name?: ProvisionedProductName;
|
|
1567
1575
|
}
|
|
@@ -1972,6 +1980,42 @@ declare namespace ServiceCatalog {
|
|
|
1972
1980
|
*/
|
|
1973
1981
|
AccessStatus?: AccessStatus;
|
|
1974
1982
|
}
|
|
1983
|
+
export interface GetProvisionedProductOutputsInput {
|
|
1984
|
+
/**
|
|
1985
|
+
* The language code. en - English (default) jp - Japanese zh - Chinese
|
|
1986
|
+
*/
|
|
1987
|
+
AcceptLanguage?: AcceptLanguage;
|
|
1988
|
+
/**
|
|
1989
|
+
* The identifier of the provisioned product that you want the outputs from.
|
|
1990
|
+
*/
|
|
1991
|
+
ProvisionedProductId?: Id;
|
|
1992
|
+
/**
|
|
1993
|
+
* The name of the provisioned product that you want the outputs from.
|
|
1994
|
+
*/
|
|
1995
|
+
ProvisionedProductName?: ProvisionedProductName;
|
|
1996
|
+
/**
|
|
1997
|
+
* The list of keys that the API should return with their values. If none are provided, the API will return all outputs of the provisioned product.
|
|
1998
|
+
*/
|
|
1999
|
+
OutputKeys?: OutputKeys;
|
|
2000
|
+
/**
|
|
2001
|
+
* The maximum number of items to return with this call.
|
|
2002
|
+
*/
|
|
2003
|
+
PageSize?: PageSize;
|
|
2004
|
+
/**
|
|
2005
|
+
* The page token for the next set of results. To retrieve the first set of results, use null.
|
|
2006
|
+
*/
|
|
2007
|
+
PageToken?: PageToken;
|
|
2008
|
+
}
|
|
2009
|
+
export interface GetProvisionedProductOutputsOutput {
|
|
2010
|
+
/**
|
|
2011
|
+
* Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
|
|
2012
|
+
*/
|
|
2013
|
+
Outputs?: RecordOutputs;
|
|
2014
|
+
/**
|
|
2015
|
+
* The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
|
|
2016
|
+
*/
|
|
2017
|
+
NextPageToken?: PageToken;
|
|
2018
|
+
}
|
|
1975
2019
|
export type HasDefaultPath = boolean;
|
|
1976
2020
|
export type Id = string;
|
|
1977
2021
|
export type IdempotencyToken = string;
|
|
@@ -2023,7 +2067,7 @@ declare namespace ServiceCatalog {
|
|
|
2023
2067
|
*/
|
|
2024
2068
|
PageSize?: PageSize;
|
|
2025
2069
|
/**
|
|
2026
|
-
* The type of shared portfolios to list. The default is to list imported portfolios. AWS_ORGANIZATIONS - List portfolios shared by the
|
|
2070
|
+
* The type of shared portfolios to list. The default is to list imported portfolios. AWS_ORGANIZATIONS - List portfolios shared by the management account of your organization AWS_SERVICECATALOG - List default portfolios IMPORTED - List imported portfolios
|
|
2027
2071
|
*/
|
|
2028
2072
|
PortfolioShareType?: PortfolioShareType;
|
|
2029
2073
|
}
|
|
@@ -2562,6 +2606,7 @@ declare namespace ServiceCatalog {
|
|
|
2562
2606
|
export type OrganizationNodes = OrganizationNode[];
|
|
2563
2607
|
export type OutputDescription = string;
|
|
2564
2608
|
export type OutputKey = string;
|
|
2609
|
+
export type OutputKeys = OutputKey[];
|
|
2565
2610
|
export type OutputValue = string;
|
|
2566
2611
|
export type PageSize = number;
|
|
2567
2612
|
export type PageToken = string;
|
|
@@ -3327,7 +3372,7 @@ declare namespace ServiceCatalog {
|
|
|
3327
3372
|
*/
|
|
3328
3373
|
PortfolioId: Id;
|
|
3329
3374
|
/**
|
|
3330
|
-
* The type of shared portfolios to reject. The default is to reject imported portfolios. AWS_ORGANIZATIONS - Reject portfolios shared by the
|
|
3375
|
+
* The type of shared portfolios to reject. The default is to reject imported portfolios. AWS_ORGANIZATIONS - Reject portfolios shared by the management account of your organization. IMPORTED - Reject imported portfolios. AWS_SERVICECATALOG - Not supported. (Throws ResourceNotFoundException.) For example, aws servicecatalog reject-portfolio-share --portfolio-id "port-2qwzkwxt3y5fk" --portfolio-share-type AWS_ORGANIZATIONS
|
|
3331
3376
|
*/
|
|
3332
3377
|
PortfolioShareType?: PortfolioShareType;
|
|
3333
3378
|
}
|