Interface CfnConnection.BasicAuthParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnConnection.BasicAuthParametersProperty.Jsii$Proxy
- Enclosing class:
CfnConnection
@Stability(Stable)
public static interface CfnConnection.BasicAuthParametersProperty
extends software.amazon.jsii.JsiiSerializable
The Basic authorization parameters 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.*;
BasicAuthParametersProperty basicAuthParametersProperty = BasicAuthParametersProperty.builder()
.password("password")
.username("username")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnConnection.BasicAuthParametersPropertystatic final classAn implementation forCfnConnection.BasicAuthParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The password associated with the user name to use for Basic authorization.The user name to use for Basic authorization.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPassword
The password associated with the user name to use for Basic authorization.- See Also:
-
getUsername
The user name to use for Basic authorization.- See Also:
-
builder
-