@aws-sdk/client-clouddirectory 3.288.0 → 3.290.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/dist-types/commands/AddFacetToObjectCommand.d.ts +30 -0
- package/dist-types/commands/ApplySchemaCommand.d.ts +31 -0
- package/dist-types/commands/AttachObjectCommand.d.ts +38 -0
- package/dist-types/commands/AttachPolicyCommand.d.ts +29 -0
- package/dist-types/commands/AttachToIndexCommand.d.ts +40 -0
- package/dist-types/commands/AttachTypedLinkCommand.d.ts +34 -0
- package/dist-types/commands/BatchReadCommand.d.ts +23 -0
- package/dist-types/commands/BatchWriteCommand.d.ts +26 -0
- package/dist-types/commands/CreateDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/CreateFacetCommand.d.ts +33 -0
- package/dist-types/commands/CreateIndexCommand.d.ts +37 -0
- package/dist-types/commands/CreateObjectCommand.d.ts +37 -0
- package/dist-types/commands/CreateSchemaCommand.d.ts +24 -0
- package/dist-types/commands/CreateTypedLinkFacetCommand.d.ts +33 -0
- package/dist-types/commands/DeleteDirectoryCommand.d.ts +30 -0
- package/dist-types/commands/DeleteFacetCommand.d.ts +30 -0
- package/dist-types/commands/DeleteObjectCommand.d.ts +30 -0
- package/dist-types/commands/DeleteSchemaCommand.d.ts +27 -0
- package/dist-types/commands/DeleteTypedLinkFacetCommand.d.ts +26 -0
- package/dist-types/commands/DetachFromIndexCommand.d.ts +32 -0
- package/dist-types/commands/DetachObjectCommand.d.ts +30 -0
- package/dist-types/commands/DetachPolicyCommand.d.ts +29 -0
- package/dist-types/commands/DetachTypedLinkCommand.d.ts +30 -0
- package/dist-types/commands/DisableDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/EnableDirectoryCommand.d.ts +27 -0
- package/dist-types/commands/GetAppliedSchemaVersionCommand.d.ts +23 -0
- package/dist-types/commands/GetDirectoryCommand.d.ts +20 -0
- package/dist-types/commands/GetFacetCommand.d.ts +26 -0
- package/dist-types/commands/GetLinkAttributesCommand.d.ts +30 -0
- package/dist-types/commands/GetObjectAttributesCommand.d.ts +30 -0
- package/dist-types/commands/GetObjectInformationCommand.d.ts +26 -0
- package/dist-types/commands/GetSchemaAsJsonCommand.d.ts +23 -0
- package/dist-types/commands/GetTypedLinkFacetInformationCommand.d.ts +29 -0
- package/dist-types/commands/ListAppliedSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListAttachedIndicesCommand.d.ts +26 -0
- package/dist-types/commands/ListDevelopmentSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListDirectoriesCommand.d.ts +23 -0
- package/dist-types/commands/ListFacetAttributesCommand.d.ts +29 -0
- package/dist-types/commands/ListFacetNamesCommand.d.ts +26 -0
- package/dist-types/commands/ListIncomingTypedLinksCommand.d.ts +33 -0
- package/dist-types/commands/ListIndexCommand.d.ts +36 -0
- package/dist-types/commands/ListManagedSchemaArnsCommand.d.ts +20 -0
- package/dist-types/commands/ListObjectAttributesCommand.d.ts +33 -0
- package/dist-types/commands/ListObjectChildrenCommand.d.ts +33 -0
- package/dist-types/commands/ListObjectParentPathsCommand.d.ts +29 -0
- package/dist-types/commands/ListObjectParentsCommand.d.ts +32 -0
- package/dist-types/commands/ListObjectPoliciesCommand.d.ts +29 -0
- package/dist-types/commands/ListOutgoingTypedLinksCommand.d.ts +33 -0
- package/dist-types/commands/ListPolicyAttachmentsCommand.d.ts +32 -0
- package/dist-types/commands/ListPublishedSchemaArnsCommand.d.ts +26 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +26 -0
- package/dist-types/commands/ListTypedLinkFacetAttributesCommand.d.ts +29 -0
- package/dist-types/commands/ListTypedLinkFacetNamesCommand.d.ts +26 -0
- package/dist-types/commands/LookupPolicyCommand.d.ts +29 -0
- package/dist-types/commands/PublishSchemaCommand.d.ts +26 -0
- package/dist-types/commands/PutSchemaFromJsonCommand.d.ts +26 -0
- package/dist-types/commands/RemoveFacetFromObjectCommand.d.ts +30 -0
- package/dist-types/commands/TagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +26 -0
- package/dist-types/commands/UpdateFacetCommand.d.ts +37 -0
- package/dist-types/commands/UpdateLinkAttributesCommand.d.ts +30 -0
- package/dist-types/commands/UpdateObjectAttributesCommand.d.ts +34 -0
- package/dist-types/commands/UpdateSchemaCommand.d.ts +23 -0
- package/dist-types/commands/UpdateTypedLinkFacetCommand.d.ts +37 -0
- package/dist-types/commands/UpgradeAppliedSchemaCommand.d.ts +31 -0
- package/dist-types/commands/UpgradePublishedSchemaCommand.d.ts +30 -0
- package/package.json +29 -29
|
@@ -29,6 +29,35 @@ export interface GetTypedLinkFacetInformationCommandOutput extends GetTypedLinkF
|
|
|
29
29
|
* @see {@link GetTypedLinkFacetInformationCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link FacetNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified <a>Facet</a> could not be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
39
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
42
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
54
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
58
|
+
* message.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class GetTypedLinkFacetInformationCommand extends $Command<GetTypedLinkFacetInformationCommandInput, GetTypedLinkFacetInformationCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
63
|
readonly input: GetTypedLinkFacetInformationCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface ListAppliedSchemaArnsCommandOutput extends ListAppliedSchemaArn
|
|
|
29
29
|
* @see {@link ListAppliedSchemaArnsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
36
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
51
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
55
|
+
* message.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class ListAppliedSchemaArnsCommand extends $Command<ListAppliedSchemaArnsCommandInput, ListAppliedSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: ListAppliedSchemaArnsCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface ListAttachedIndicesCommandOutput extends ListAttachedIndicesRes
|
|
|
29
29
|
* @see {@link ListAttachedIndicesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
39
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
42
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
51
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
55
|
+
* message.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class ListAttachedIndicesCommand extends $Command<ListAttachedIndicesCommandInput, ListAttachedIndicesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: ListAttachedIndicesCommandInput;
|
|
@@ -30,6 +30,32 @@ export interface ListDevelopmentSchemaArnsCommandOutput extends ListDevelopmentS
|
|
|
30
30
|
* @see {@link ListDevelopmentSchemaArnsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
37
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
40
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
43
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
46
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
49
|
+
* <p>The specified resource could not be found.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
52
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ValidationException} (client fault)
|
|
55
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
56
|
+
* message.</p>
|
|
57
|
+
*
|
|
58
|
+
*
|
|
33
59
|
*/
|
|
34
60
|
export declare class ListDevelopmentSchemaArnsCommand extends $Command<ListDevelopmentSchemaArnsCommandInput, ListDevelopmentSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
61
|
readonly input: ListDevelopmentSchemaArnsCommandInput;
|
|
@@ -29,6 +29,29 @@ export interface ListDirectoriesCommandOutput extends ListDirectoriesResponse, _
|
|
|
29
29
|
* @see {@link ListDirectoriesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
36
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
48
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ValidationException} (client fault)
|
|
51
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
52
|
+
* message.</p>
|
|
53
|
+
*
|
|
54
|
+
*
|
|
32
55
|
*/
|
|
33
56
|
export declare class ListDirectoriesCommand extends $Command<ListDirectoriesCommandInput, ListDirectoriesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
57
|
readonly input: ListDirectoriesCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface ListFacetAttributesCommandOutput extends ListFacetAttributesRes
|
|
|
29
29
|
* @see {@link ListFacetAttributesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link FacetNotFoundException} (client fault)
|
|
36
|
+
* <p>The specified <a>Facet</a> could not be found.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
39
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
42
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
54
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
58
|
+
* message.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class ListFacetAttributesCommand extends $Command<ListFacetAttributesCommandInput, ListFacetAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
63
|
readonly input: ListFacetAttributesCommandInput;
|
|
@@ -29,6 +29,32 @@ export interface ListFacetNamesCommandOutput extends ListFacetNamesResponse, __M
|
|
|
29
29
|
* @see {@link ListFacetNamesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
36
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
45
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
48
|
+
* <p>The specified resource could not be found.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
51
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ValidationException} (client fault)
|
|
54
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
55
|
+
* message.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
32
58
|
*/
|
|
33
59
|
export declare class ListFacetNamesCommand extends $Command<ListFacetNamesCommandInput, ListFacetNamesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
60
|
readonly input: ListFacetNamesCommandInput;
|
|
@@ -31,6 +31,39 @@ export interface ListIncomingTypedLinksCommandOutput extends ListIncomingTypedLi
|
|
|
31
31
|
* @see {@link ListIncomingTypedLinksCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
38
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
41
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
42
|
+
* validated with the schema.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
45
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
48
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
51
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
54
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
|
+
* <p>The specified resource could not be found.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
60
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
64
|
+
* message.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
34
67
|
*/
|
|
35
68
|
export declare class ListIncomingTypedLinksCommand extends $Command<ListIncomingTypedLinksCommandInput, ListIncomingTypedLinksCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
36
69
|
readonly input: ListIncomingTypedLinksCommandInput;
|
|
@@ -29,6 +29,42 @@ export interface ListIndexCommandOutput extends ListIndexResponse, __MetadataBea
|
|
|
29
29
|
* @see {@link ListIndexCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
39
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
40
|
+
* validated with the schema.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
49
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link NotIndexException} (client fault)
|
|
55
|
+
* <p>Indicates that the requested operation can only operate on index objects.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>The specified resource could not be found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
61
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
65
|
+
* message.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
32
68
|
*/
|
|
33
69
|
export declare class ListIndexCommand extends $Command<ListIndexCommandInput, ListIndexCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
70
|
readonly input: ListIndexCommandInput;
|
|
@@ -29,6 +29,26 @@ export interface ListManagedSchemaArnsCommandOutput extends ListManagedSchemaArn
|
|
|
29
29
|
* @see {@link ListManagedSchemaArnsCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
36
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
39
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
42
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
45
|
+
* <p>The specified resource could not be found.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ValidationException} (client fault)
|
|
48
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
49
|
+
* message.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
32
52
|
*/
|
|
33
53
|
export declare class ListManagedSchemaArnsCommand extends $Command<ListManagedSchemaArnsCommandInput, ListManagedSchemaArnsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
54
|
readonly input: ListManagedSchemaArnsCommandInput;
|
|
@@ -30,6 +30,39 @@ export interface ListObjectAttributesCommandOutput extends ListObjectAttributesR
|
|
|
30
30
|
* @see {@link ListObjectAttributesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
37
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
40
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
41
|
+
* validated with the schema.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
44
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
47
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
50
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
53
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
59
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
63
|
+
* message.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
33
66
|
*/
|
|
34
67
|
export declare class ListObjectAttributesCommand extends $Command<ListObjectAttributesCommandInput, ListObjectAttributesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
68
|
readonly input: ListObjectAttributesCommandInput;
|
|
@@ -30,6 +30,39 @@ export interface ListObjectChildrenCommandOutput extends ListObjectChildrenRespo
|
|
|
30
30
|
* @see {@link ListObjectChildrenCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
37
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
40
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
43
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
46
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
49
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link NotNodeException} (client fault)
|
|
52
|
+
* <p>Occurs when any invalid operations are performed on an object that is not a node, such
|
|
53
|
+
* as calling <code>ListObjectChildren</code> for a leaf node object.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
|
+
* <p>The specified resource could not be found.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
59
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ValidationException} (client fault)
|
|
62
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
63
|
+
* message.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
33
66
|
*/
|
|
34
67
|
export declare class ListObjectChildrenCommand extends $Command<ListObjectChildrenCommandInput, ListObjectChildrenCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
68
|
readonly input: ListObjectChildrenCommandInput;
|
|
@@ -36,6 +36,35 @@ export interface ListObjectParentPathsCommandOutput extends ListObjectParentPath
|
|
|
36
36
|
* @see {@link ListObjectParentPathsCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
40
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
43
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
46
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
49
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
52
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
55
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
58
|
+
* <p>The specified resource could not be found.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
61
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ValidationException} (client fault)
|
|
64
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
65
|
+
* message.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
39
68
|
*/
|
|
40
69
|
export declare class ListObjectParentPathsCommand extends $Command<ListObjectParentPathsCommandInput, ListObjectParentPathsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
41
70
|
readonly input: ListObjectParentPathsCommandInput;
|
|
@@ -30,6 +30,38 @@ export interface ListObjectParentsCommandOutput extends ListObjectParentsRespons
|
|
|
30
30
|
* @see {@link ListObjectParentsCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
34
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link CannotListParentOfRootException} (client fault)
|
|
37
|
+
* <p>Cannot list the parents of a <a>Directory</a> root.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
40
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
43
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
46
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
49
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
52
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
55
|
+
* <p>The specified resource could not be found.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
58
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link ValidationException} (client fault)
|
|
61
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
62
|
+
* message.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
33
65
|
*/
|
|
34
66
|
export declare class ListObjectParentsCommand extends $Command<ListObjectParentsCommandInput, ListObjectParentsCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
35
67
|
readonly input: ListObjectParentsCommandInput;
|
|
@@ -29,6 +29,35 @@ export interface ListObjectPoliciesCommandOutput extends ListObjectPoliciesRespo
|
|
|
29
29
|
* @see {@link ListObjectPoliciesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
33
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
36
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
39
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
42
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
45
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
48
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
51
|
+
* <p>The specified resource could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
54
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ValidationException} (client fault)
|
|
57
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
58
|
+
* message.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
32
61
|
*/
|
|
33
62
|
export declare class ListObjectPoliciesCommand extends $Command<ListObjectPoliciesCommandInput, ListObjectPoliciesCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
34
63
|
readonly input: ListObjectPoliciesCommandInput;
|
|
@@ -31,6 +31,39 @@ export interface ListOutgoingTypedLinksCommandOutput extends ListOutgoingTypedLi
|
|
|
31
31
|
* @see {@link ListOutgoingTypedLinksCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
35
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link DirectoryNotEnabledException} (client fault)
|
|
38
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link FacetValidationException} (client fault)
|
|
41
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
42
|
+
* validated with the schema.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServiceException} (server fault)
|
|
45
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InvalidArnException} (client fault)
|
|
48
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InvalidNextTokenException} (client fault)
|
|
51
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
54
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
|
+
* <p>The specified resource could not be found.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link RetryableConflictException} (client fault)
|
|
60
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ValidationException} (client fault)
|
|
63
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
64
|
+
* message.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
34
67
|
*/
|
|
35
68
|
export declare class ListOutgoingTypedLinksCommand extends $Command<ListOutgoingTypedLinksCommandInput, ListOutgoingTypedLinksCommandOutput, CloudDirectoryClientResolvedConfig> {
|
|
36
69
|
readonly input: ListOutgoingTypedLinksCommandInput;
|