Class CfnDataSourcePropsMixin.KeyPairCredentialsProperty
The combination of username, private key and passphrase that are used as credentials.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.KeyPairCredentialsProperty : CfnDataSourcePropsMixin.IKeyPairCredentialsProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.KeyPairCredentialsProperty Implements CfnDataSourcePropsMixin.IKeyPairCredentialsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var keyPairCredentialsProperty = new KeyPairCredentialsProperty {
KeyPairUsername = "keyPairUsername",
PrivateKey = "privateKey",
PrivateKeyPassphrase = "privateKeyPassphrase"
};
Synopsis
Constructors
| KeyPairCredentialsProperty() | The combination of username, private key and passphrase that are used as credentials. |
Properties
| KeyPairUsername | Username. |
| PrivateKey | PrivateKey. |
| PrivateKeyPassphrase | PrivateKeyPassphrase. |
Constructors
KeyPairCredentialsProperty()
The combination of username, private key and passphrase that are used as credentials.
public KeyPairCredentialsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var keyPairCredentialsProperty = new KeyPairCredentialsProperty {
KeyPairUsername = "keyPairUsername",
PrivateKey = "privateKey",
PrivateKeyPassphrase = "privateKeyPassphrase"
};
Properties
KeyPairUsername
Username.
public string? KeyPairUsername { get; set; }
Property Value
Remarks
PrivateKey
PrivateKey.
public string? PrivateKey { get; set; }
Property Value
Remarks
PrivateKeyPassphrase
PrivateKeyPassphrase.
public string? PrivateKeyPassphrase { get; set; }