Interface CfnConnection.ClientParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.ClientParametersProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.ClientParametersProperty
extends software.amazon.jsii.JsiiSerializable
Contains the OAuth authorization parameters to use for the connection.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.events.*; ClientParametersProperty clientParametersProperty = ClientParametersProperty.builder() .clientId("clientId") .clientSecret("clientSecret") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnection.ClientParametersProperty
static final class
An implementation forCfnConnection.ClientParametersProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The client ID to use for OAuth authorization.The client secret assciated with the client ID to use for OAuth authorization.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientId
The client ID to use for OAuth authorization. -
getClientSecret
The client secret assciated with the client ID to use for OAuth authorization. -
builder
-