Skip to content

Commit

Permalink
feat(client-finspace-data): Adding sensitive trait to attributes. Cha…
Browse files Browse the repository at this point in the history
…nge max SessionDuration from 720 to 60. Correct "ApiAccess" attribute to "apiAccess" to maintain consistency between APIs.
  • Loading branch information
awstools committed Sep 25, 2023
1 parent 05242c2 commit c591b7c
Show file tree
Hide file tree
Showing 10 changed files with 114 additions and 91 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export interface AssociateUserToPermissionGroupCommandOutput

/**
* @public
* <p>Adds a user account to a permission group to grant permissions for actions a user can perform in FinSpace.</p>
* <p>Adds a user to a permission group to grant permissions for actions a user can perform in FinSpace.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export interface CreateUserCommandOutput extends CreateUserResponse, __MetadataB
* type: "SUPER_USER" || "APP_USER", // required
* firstName: "STRING_VALUE",
* lastName: "STRING_VALUE",
* ApiAccess: "ENABLED" || "DISABLED",
* apiAccess: "ENABLED" || "DISABLED",
* apiAccessPrincipalArn: "STRING_VALUE",
* clientToken: "STRING_VALUE",
* };
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface DisassociateUserFromPermissionGroupCommandOutput

/**
* @public
* <p>Removes a user account from a permission group.</p>
* <p>Removes a user from a permission group.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ import {
} from "@smithy/types";

import { FinspaceDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FinspaceDataClient";
import { GetProgrammaticAccessCredentialsRequest, GetProgrammaticAccessCredentialsResponse } from "../models/models_0";
import {
GetProgrammaticAccessCredentialsRequest,
GetProgrammaticAccessCredentialsResponse,
GetProgrammaticAccessCredentialsResponseFilterSensitiveLog,
} from "../models/models_0";
import {
de_GetProgrammaticAccessCredentialsCommand,
se_GetProgrammaticAccessCredentialsCommand,
Expand All @@ -42,7 +46,7 @@ export interface GetProgrammaticAccessCredentialsCommandOutput

/**
* @public
* <p>Request programmatic credentials to use with FinSpace SDK.</p>
* <p>Request programmatic credentials to use with FinSpace SDK. For more information, see <a href="https://docs.aws.amazon.com/finspace/latest/data-api/fs-using-the-finspace-api.html#accessing-credentials">Step 2. Access credentials programmatically using IAM access key id and secret access key</a>.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down Expand Up @@ -138,7 +142,7 @@ export class GetProgrammaticAccessCredentialsCommand extends $Command<
clientName,
commandName,
inputFilterSensitiveLog: (_: any) => _,
outputFilterSensitiveLog: (_: any) => _,
outputFilterSensitiveLog: GetProgrammaticAccessCredentialsResponseFilterSensitiveLog,
[SMITHY_CONTEXT_KEY]: {
service: "AWSHabaneroPublicAPI",
operation: "GetProgrammaticAccessCredentials",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export interface ListPermissionGroupsByUserCommandOutput extends ListPermissionG

/**
* @public
* <p>Lists all the permission groups that are associated with a specific user account.</p>
* <p>Lists all the permission groups that are associated with a specific user.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface ListUsersCommandOutput extends ListUsersResponse, __MetadataBea

/**
* @public
* <p>Lists all available user accounts in FinSpace.</p>
* <p>Lists all available users in FinSpace.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface UpdateUserCommandOutput extends UpdateUserResponse, __MetadataB

/**
* @public
* <p>Modifies the details of the specified user account. You cannot update the <code>userId</code> for a user.</p>
* <p>Modifies the details of the specified user. You cannot update the <code>userId</code> for a user.</p>
* @example
* Use a bare-bones client and the command you need to make an API call.
* ```javascript
Expand Down
Loading

0 comments on commit c591b7c

Please sign in to comment.