Skip to content

Commit

Permalink
feat(client-appflow): This release adds support to bypass SSO with th…
Browse files Browse the repository at this point in the history
…e SAPOData connector when connecting to an SAP instance.
  • Loading branch information
awstools committed Jun 27, 2023
1 parent e298b14 commit b11ef46
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf
* "STRING_VALUE",
* ],
* },
* disableSSO: true || false,
* },
* CustomConnector: { // CustomConnectorProfileProperties
* profileProperties: { // ProfilePropertiesMap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto
* // "STRING_VALUE",
* // ],
* // },
* // disableSSO: true || false,
* // },
* // CustomConnector: { // CustomConnectorProfileProperties
* // profileProperties: { // ProfilePropertiesMap
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProf
* "STRING_VALUE",
* ],
* },
* disableSSO: true || false,
* },
* CustomConnector: { // CustomConnectorProfileProperties
* profileProperties: { // ProfilePropertiesMap
Expand Down
12 changes: 12 additions & 0 deletions clients/client-appflow/src/models/models_0.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2450,6 +2450,18 @@ export interface SAPODataConnectorProfileProperties {
* <p> The SAPOData OAuth properties required for OAuth type authentication. </p>
*/
oAuthProperties?: OAuthProperties;

/**
* <p>If you set this parameter to <code>true</code>, Amazon AppFlow bypasses the single
* sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance.</p>
* <p>Whether you need this option depends on the types of credentials that you applied to
* your SAP OData connection profile. If your profile uses basic authentication credentials, SAP SSO
* can prevent Amazon AppFlow from connecting to your account with your username and
* password. In this case, bypassing SSO makes it possible for Amazon AppFlow to connect
* successfully. However, if your profile uses OAuth credentials, this parameter has no
* affect.</p>
*/
disableSSO?: boolean;
}

/**
Expand Down
7 changes: 7 additions & 0 deletions codegen/sdk-codegen/aws-models/appflow.json
Original file line number Diff line number Diff line change
Expand Up @@ -7589,6 +7589,13 @@
"traits": {
"smithy.api#documentation": "<p> The SAPOData OAuth properties required for OAuth type authentication. </p>"
}
},
"disableSSO": {
"target": "com.amazonaws.appflow#Boolean",
"traits": {
"smithy.api#default": false,
"smithy.api#documentation": "<p>If you set this parameter to <code>true</code>, Amazon AppFlow bypasses the single\n sign-on (SSO) settings in your SAP account when it accesses your SAP OData instance.</p>\n <p>Whether you need this option depends on the types of credentials that you applied to \n your SAP OData connection profile. If your profile uses basic authentication credentials, SAP SSO\n can prevent Amazon AppFlow from connecting to your account with your username and\n password. In this case, bypassing SSO makes it possible for Amazon AppFlow to connect\n successfully. However, if your profile uses OAuth credentials, this parameter has no\n affect.</p>"
}
}
},
"traits": {
Expand Down

0 comments on commit b11ef46

Please sign in to comment.