Aws Ec2Key Pair Properties Args
data class AwsEc2KeyPairPropertiesArgs(val keyFingerprint: Output<String>? = null, val keyFormat: Output<Either<String, KeyFormat>>? = null, val keyName: Output<String>? = null, val keyPairId: Output<String>? = null, val keyType: Output<Either<String, KeyType>>? = null, val publicKeyMaterial: Output<String>? = null, val tags: Output<List<TagArgs>>? = null) : ConvertibleToJava<AwsEc2KeyPairPropertiesArgs>
Definition of awsEc2KeyPair
Constructors
Link copied to clipboard
constructor(keyFingerprint: Output<String>? = null, keyFormat: Output<Either<String, KeyFormat>>? = null, keyName: Output<String>? = null, keyPairId: Output<String>? = null, keyType: Output<Either<String, KeyType>>? = null, publicKeyMaterial: Output<String>? = null, tags: Output<List<TagArgs>>? = null)
Properties
Link copied to clipboard
Property keyFingerprint
Link copied to clipboard
The type of key pair. Note that ED25519 keys are not supported for Windows instances. If the `PublicKeyMaterial`
property is specified, the `KeyType`
property is ignored, and the key type is inferred from the `PublicKeyMaterial`
value. Default: `rsa`
Link copied to clipboard
The public key material. The `PublicKeyMaterial`
property is used to import a key pair. If this property is not specified, then a new key pair will be created.