Interface CfnConnectorProfile.BasicAuthCredentialsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnectorProfile.BasicAuthCredentialsProperty.Jsii$Proxy
- Enclosing class:
CfnConnectorProfile
@Stability(Stable)
public static interface CfnConnectorProfile.BasicAuthCredentialsProperty
extends software.amazon.jsii.JsiiSerializable
The basic auth credentials required for basic authentication.
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.appflow.*; BasicAuthCredentialsProperty basicAuthCredentialsProperty = BasicAuthCredentialsProperty.builder() .password("password") .username("username") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectorProfile.BasicAuthCredentialsProperty
static final class
An implementation forCfnConnectorProfile.BasicAuthCredentialsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The password to use to connect to a resource.The username to use to connect to a resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPassword
The password to use to connect to a resource.- See Also:
-
getUsername
The username to use to connect to a resource.- See Also:
-
builder
-