GetSecretRotationExternalSecretRotationMetadata.fromMap constructor

GetSecretRotationExternalSecretRotationMetadata.fromMap(
  1. Map<String, dynamic> map
)

Implementation

factory GetSecretRotationExternalSecretRotationMetadata.fromMap(Map<String, dynamic> map) {
  return GetSecretRotationExternalSecretRotationMetadata(
    key: pulumi.Input.fromValue(map['key'] as String),
    value: pulumi.Input.fromValue(map['value'] as String),
  );
}